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