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