PickingListDestination.cs 343 B

1234567891011121314
  1. using System;
  2. using InABox.Core;
  3. namespace Comal.Classes
  4. {
  5. public class PickingListDestination : Entity, IRemotable, IPersistent, ISequenceable, ILicense<ProjectManagementLicense>
  6. {
  7. [NullEditor]
  8. public long Sequence { get; set; }
  9. [TextBoxEditor]
  10. public string Description { get; set; }
  11. }
  12. }