using InABox.Core; namespace Comal.Classes { [UserTracking(typeof(User))] public class WindowTracker : Entity, IRemotable, IPersistent, ILicense { [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; } protected override void Init() { base.Init(); Employee = new EmployeeLink(); Job = new JobLink(); ITP = new JobITPLink(); Activity = new ActivityLink(); } } }