| 1234567891011121314151617 |
- using InABox.Core;
- namespace Comal.Classes
- {
- [Caption("Digital Forms")]
- [UserTracking("Digital Forms")]
- public class SetoutForm : MovableEntityForm<Setout, SetoutLink, SetoutForm>, IDigitalForm<Setout>
- {
-
- [EditorSequence(998)]
- [EntityRelationship(DeleteAction.Cascade)]
- public override SetoutLink Parent { get; }
-
- public override string AutoIncrementPrefix() => "SM";
- }
-
- }
|