namespace SPMS.Application.DTOs.Service; public class RegisterServiceResponseDto { public string ServiceCode { get; set; } = string.Empty; public string ServiceName { get; set; } = string.Empty; public string ApiKey { get; set; } = string.Empty; public DateTime ApiKeyCreatedAt { get; set; } public string Status { get; set; } = string.Empty; public DateTime CreatedAt { get; set; } public PlatformResultDto Platforms { get; set; } = new(); } public class PlatformResultDto { public PlatformStatusDto? Android { get; set; } public PlatformStatusDto? Ios { get; set; } } public class PlatformStatusDto { public bool Registered { get; set; } }