123456789101112 |
- using InABox.Core;
- namespace Comal.Classes
- {
- [Caption("Digital Forms")]
- [UserTracking("Digital Forms")]
- public class AssignmentForm : EntityForm<Assignment, AssignmentLink, AssignmentForm>
- {
- public override string AutoIncrementPrefix() => "AF";
- }
-
- }
|