123456789101112131415 |
- using System;
- using InABox.Core;
- namespace Comal.Classes
- {
- public class RequisitionDestination : Entity, IRemotable, IPersistent, ISequenceable, ILicense<ProjectManagementLicense>
- {
- [NullEditor]
- public long Sequence { get; set; }
-
- [TextBoxEditor]
- public String Description { get; set; }
-
- }
- }
|