123456789101112131415161718192021222324252627 |
- using InABox.Core;
- namespace Comal.Classes
- {
- [UserTracking(typeof(ManufacturingPacket))]
- public class ManufacturingLostTime : Entity, IManufacturingLostTime, IRemotable, IPersistent, ISequenceable, ILicense<ManufacturingLicense>,
- IImportable, IExportable, IMergeable
- {
- public ManufacturingLostTime()
- {
- Active = true;
- }
- [CheckBoxEditor]
- public bool Active { get; set; }
- [UniqueCodeEditor(Visible = Visible.Default, Editable = Editable.Enabled)]
- public string Code { get; set; }
- [TextBoxEditor]
- public string Description { get; set; }
- public ActivityLink Activity { get; set; }
- public long Sequence { get; set; }
- }
- }
|