RoleForm.cs 370 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using InABox.Core;
  5. namespace Comal.Classes
  6. {
  7. public class RoleForm : Entity, IRemotable, IPersistent, IManyToMany<Role, DigitalForm>, ILicense<CoreLicense>, IManyToMany<DigitalForm, Role>
  8. {
  9. public RoleLink Role { get; set; }
  10. public DigitalFormLink Form { get; set; }
  11. }
  12. }