ManufacturingLostTime.cs 747 B

123456789101112131415161718192021222324252627
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. [UserTracking(typeof(ManufacturingPacket))]
  5. public class ManufacturingLostTime : Entity, IManufacturingLostTime, IRemotable, IPersistent, ISequenceable, ILicense<ManufacturingLicense>,
  6. IImportable, IExportable, IMergeable
  7. {
  8. public ManufacturingLostTime()
  9. {
  10. Active = true;
  11. }
  12. [CheckBoxEditor]
  13. public bool Active { get; set; }
  14. [UniqueCodeEditor(Visible = Visible.Default, Editable = Editable.Enabled)]
  15. public string Code { get; set; }
  16. [TextBoxEditor]
  17. public string Description { get; set; }
  18. public ActivityLink Activity { get; set; }
  19. public long Sequence { get; set; }
  20. }
  21. }