123456789101112 |
- using InABox.Core;
- namespace Comal.Classes
- {
- [Caption("Digital Form Subscriptions")]
- public class EmployeeFormSubscription : Entity, IRemotable, IPersistent, IOneToMany<Employee>, ILicense<DigitalFormsLicense>
- {
- public EmployeeLink Employee { get; set; }
- public QAFormLink Form { get; set; }
- }
- }
|