feat(ministry): add Ministry entity, seed (10), and read endpoint
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
namespace ROLAC.API.DTOs.Ministry;
|
||||
|
||||
public class MinistryDto
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Name_en { get; set; } = "";
|
||||
public string? Name_zh { get; set; }
|
||||
public int SortOrder { get; set; }
|
||||
public bool IsActive { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user