12 lines
307 B
C#
12 lines
307 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace SPMS.Application.DTOs.Notice;
|
|
|
|
public class NoticeInfoRequestDto
|
|
{
|
|
[Required(ErrorMessage = "공지사항 ID는 필수입니다.")]
|
|
[JsonPropertyName("notice_id")]
|
|
public long NoticeId { get; set; }
|
|
}
|