123456789101112131415161718 |
- using InABox.Core;
- namespace Comal.Classes
- {
- [UserTracking(typeof(Contact))]
- public class ContactType : Entity, IRemotable, IPersistent, IContactType, ILicense<CoreLicense>
- {
- [CheckBoxEditor]
- public bool AccountsPayable { get; set; }
- [CheckBoxEditor]
- public bool AccountsReceivable { get; set; }
- [TextBoxEditor(Visible = Visible.Default)]
- [EditorSequence(1)]
- public string Description { get; set; }
- }
- }
|