using System; using System.Collections.Generic; using System.Text; using InABox.Core; namespace Comal.Classes { public class RoleForm : Entity, IRemotable, IPersistent, IManyToMany, ILicense, IManyToMany { public RoleLink Role { get; set; } public DigitalFormLink Form { get; set; } protected override void Init() { Role = new RoleLink(); Form = new DigitalFormLink(); base.Init(); } } }