using InABox.Core; using System; using System.Collections.Generic; using System.Text; namespace Comal.Classes { public class DataEntryTagEmployee : Entity, IRemotable, IPersistent, IManyToMany, IDataEntryTagDistributionEmployee, ILicense { [EntityRelationship(DeleteAction.Cascade)] public DataEntryTagLink Tag { get; set; } [EntityRelationship(DeleteAction.Cascade)] public EmployeeLink Employee { get; set; } } }