using System.ComponentModel.DataAnnotations; namespace SPMS.Application.DTOs.Service; public class DeleteIpRequestDto { [Required(ErrorMessage = "IP ID는 필수입니다.")] public long IpId { get; set; } }