feat(ministry): add DefaultFunctionalClass for Form 990 functional split
This commit is contained in:
@@ -8,4 +8,5 @@ public class CreateMinistryRequest
|
||||
[MaxLength(500)] public string? Description_en { get; set; }
|
||||
[MaxLength(500)] public string? Description_zh { get; set; }
|
||||
public int SortOrder { get; set; }
|
||||
[MaxLength(20)] public string? DefaultFunctionalClass { get; set; }
|
||||
}
|
||||
|
||||
@@ -9,4 +9,5 @@ public class MinistryDto
|
||||
public string? Description_zh { get; set; }
|
||||
public int SortOrder { get; set; }
|
||||
public bool IsActive { get; set; }
|
||||
public string DefaultFunctionalClass { get; set; } = "Program";
|
||||
}
|
||||
|
||||
@@ -9,4 +9,5 @@ public class UpdateMinistryRequest
|
||||
[MaxLength(500)] public string? Description_zh { get; set; }
|
||||
public bool IsActive { get; set; } = true;
|
||||
public int SortOrder { get; set; }
|
||||
[MaxLength(20)] public string? DefaultFunctionalClass { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user