using System.ComponentModel.DataAnnotations; namespace ROLAC.API.DTOs.Disbursement; public class ChurchProfileDto { public int Id { get; set; } public string Name { get; set; } = ""; public string? Address { get; set; } public string? City { get; set; } public string? State { get; set; } public string? ZipCode { get; set; } public string? BankName { get; set; } public string? BankAccountNumber { get; set; } public string? BankRoutingNumber { get; set; } public int NextCheckNumber { get; set; } } public class UpdateChurchProfileRequest { [Required, MaxLength(200)] public string Name { get; set; } = ""; [MaxLength(500)] public string? Address { get; set; } [MaxLength(100)] public string? City { get; set; } [MaxLength(50)] public string? State { get; set; } [MaxLength(20)] public string? ZipCode { get; set; } [MaxLength(200)] public string? BankName { get; set; } [MaxLength(50)] public string? BankAccountNumber { get; set; } [MaxLength(50)] public string? BankRoutingNumber { get; set; } [Range(1, int.MaxValue)] public int NextCheckNumber { get; set; } }