Files
ROLAC/API/ROLAC.API/DTOs/Ministry/MinistryDto.cs
T
Chris Chen 9dbb1d38d8 WIP
2026-06-24 18:45:22 -07:00

13 lines
376 B
C#

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 string? Description_en { get; set; }
public string? Description_zh { get; set; }
public int SortOrder { get; set; }
public bool IsActive { get; set; }
}