using System.ComponentModel.DataAnnotations; namespace SPMS.Application.DTOs.Service; public class FcmCredentialsRequestDto { [Required(ErrorMessage = "Service Account JSON은 필수입니다.")] public string ServiceAccountJson { get; set; } = string.Empty; }