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