ManufacturingTrolley.cs 754 B

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