KanbanForm.cs 230 B

123456789
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. public class KanbanForm : EntityForm<Kanban, KanbanLink, KanbanForm>, ILicense<TaskManagementLicense>
  5. {
  6. public override string AutoIncrementPrefix() => "KF";
  7. }
  8. }