RequisitionDestination.cs 398 B

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