using InABox.Core; namespace Comal.Classes { [UserTracking(typeof(Product))] public class GLCode : Entity, IRemotable, IPersistent, ILicense, IExportable, IImportable, IMergeable { [UniqueCodeEditor(Visible = Visible.Default, Editable = Editable.Enabled)] public string Code { get; set; } [TextBoxEditor] public string Description { get; set; } [CheckBoxEditor] public bool Income { get; set; } [CheckBoxEditor] public bool Expense { get; set; } [CheckBoxEditor] public bool Hidden { get; set; } public override string ToString() { return string.Format("{0}: {1}", Code, Description); } } }