| 12345678910111213 | using System;using System.Collections.Generic;using System.Text;using InABox.Core;namespace Comal.Classes{    public class RoleForm : Entity, IRemotable, IPersistent, IManyToMany<Role, DigitalForm>, ILicense<CoreLicense>, IManyToMany<DigitalForm, Role>    {        public RoleLink Role { get; set; }        public DigitalFormLink Form { get; set; }    }}
 |