| 12345678910111213141516171819 | using InABox.Core;namespace Comal.Classes{    [UserTracking(typeof(Employee))]    public class EmployeeGroup : Entity, IPersistent, IRemotable, ILicense<CoreLicense>, 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);        }    }}
 |