SPMS_API/SPMS.Application/DTOs/Service/ServiceResponseDto.cs
seonkyu.kim cac56761f4 feat: 서비스 관리 API 구현 (#44)
- ServiceController: 서비스 목록/상세/상태변경 엔드포인트
- ServiceManagementService: 비즈니스 로직 구현
- Service DTOs: 요청/응답 DTO 4종
- DI 등록

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-10 00:01:33 +09:00

26 lines
1.0 KiB
C#

namespace SPMS.Application.DTOs.Service;
public class ServiceResponseDto
{
public string ServiceCode { get; set; } = string.Empty;
public string ServiceName { get; set; } = string.Empty;
public string? Description { get; set; }
public string ApiKey { get; set; } = string.Empty;
public DateTime ApiKeyCreatedAt { get; set; }
public string? ApnsBundleId { get; set; }
public string? ApnsKeyId { get; set; }
public string? ApnsTeamId { get; set; }
public bool HasApnsKey { get; set; }
public bool HasFcmCredentials { get; set; }
public string? WebhookUrl { get; set; }
public string? Tags { get; set; }
public string SubTier { get; set; } = string.Empty;
public DateTime? SubStartedAt { get; set; }
public string Status { get; set; } = string.Empty;
public DateTime CreatedAt { get; set; }
public string CreatedByName { get; set; } = string.Empty;
public DateTime? UpdatedAt { get; set; }
public int DeviceCount { get; set; }
public List<string> AllowedIps { get; set; } = new();
}