Files
ROLAC/API/ROLAC.API/DTOs/Giving/GivingCategoryDto.cs
T
2026-05-28 16:29:31 -07:00

13 lines
411 B
C#

namespace ROLAC.API.DTOs.Giving;
public class GivingCategoryDto
{
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 bool IsActive { get; set; }
public int SortOrder { get; set; }
}