SetoutForm.cs 445 B

1234567891011121314151617
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. [Caption("Digital Forms")]
  5. [UserTracking("Digital Forms")]
  6. public class SetoutForm : MovableEntityForm<Setout, SetoutLink, SetoutForm>, IDigitalForm<Setout>
  7. {
  8. [EditorSequence(998)]
  9. [EntityRelationship(DeleteAction.Cascade)]
  10. public override SetoutLink Parent { get; }
  11. public override string AutoIncrementPrefix() => "SM";
  12. }
  13. }