| 1234567891011121314151617181920 | using InABox.Core;namespace Comal.Classes{    [UserTracking(typeof(User))]    public class WindowTracker : Entity, IRemotable, IPersistent, ILicense<CoreLicense>    {        [NullEditor]        public EmployeeLink Employee { get; set; }        [TextBoxEditor]        public string Window { get; set; }        public JobLink Job { get; set; }        public JobITPLink ITP { get; set; }        public ActivityLink Activity { get; set; }    }}
 |