RequisitionDestination.cs 352 B

123456789101112131415
  1. using System;
  2. using InABox.Core;
  3. namespace Comal.Classes
  4. {
  5. public class RequisitionDestination : 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. }