Files
ROLAC/API/ROLAC.API/DTOs/Ministry/MinistryDto.cs
T

14 lines
445 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; }
public string DefaultFunctionalClass { get; set; } = "Program";
}