ContactType.cs 480 B

123456789101112131415161718
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. [UserTracking(typeof(Contact))]
  5. public class ContactType : Entity, IRemotable, IPersistent, IContactType, ILicense<CoreLicense>
  6. {
  7. [CheckBoxEditor]
  8. public bool AccountsPayable { get; set; }
  9. [CheckBoxEditor]
  10. public bool AccountsReceivable { get; set; }
  11. [TextBoxEditor(Visible = Visible.Default)]
  12. [EditorSequence(1)]
  13. public string Description { get; set; }
  14. }
  15. }