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