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

13 lines
468 B
C#

using System.ComponentModel.DataAnnotations;
namespace ROLAC.API.DTOs.Ministry;
public class UpdateMinistryRequest
{
[Required, MaxLength(200)] public string Name_en { get; set; } = "";
[MaxLength(200)] public string? Name_zh { get; set; }
[MaxLength(500)] public string? Description_en { get; set; }
[MaxLength(500)] public string? Description_zh { get; set; }
public bool IsActive { get; set; } = true;
public int SortOrder { get; set; }
}