| 1234567891011121314151617 |
- using InABox.Core;
- namespace Comal.Classes
- {
- public class JobStyle : Entity, IRemotable, IPersistent, IManyToMany<Job, ProductStyle>, ILicense<ProjectManagementLicense>
- {
- [EntityRelationship(DeleteAction.Cascade)]
- public JobLink Job { get; set; }
- [EntityRelationship(DeleteAction.SetNull)]
- public ProductStyleLink Style { get; set; }
- [EditorSequence(3)]
- [TextBoxEditor]
- public string Note { get; set; } = "";
- }
- }
|