- ServiceController: 서비스 목록/상세/상태변경 엔드포인트 - ServiceManagementService: 비즈니스 로직 구현 - Service DTOs: 요청/응답 DTO 4종 - DI 등록 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
11 lines
330 B
C#
11 lines
330 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace SPMS.Application.DTOs.Service;
|
|
|
|
public class ChangeServiceStatusRequestDto
|
|
{
|
|
[Required(ErrorMessage = "상태를 선택해주세요.")]
|
|
[Range(0, 1, ErrorMessage = "상태는 Active(0) 또는 Suspended(1)만 가능합니다.")]
|
|
public int Status { get; set; }
|
|
}
|