using System; using InABox.Core; namespace Comal.Classes { [UserTracking(typeof(Employee))] public class JobEmployee : Entity, IPersistent, IRemotable, IManyToMany, ILicense { [EntityRelationship(DeleteAction.Cascade)] public JobLink JobLink { get; set; } [EntityRelationship(DeleteAction.Cascade)] public EmployeeLink EmployeeLink { get; set; } [DateEditor] public DateTime Inducted { get; set; } public bool Active { get; set; } = true; } }