namespace SPMS.Application.DTOs.Service; public class CredentialsResponseDto { public ApnsCredentialsInfoDto? Apns { get; set; } public FcmCredentialsInfoDto? Fcm { get; set; } } public class ApnsCredentialsInfoDto { public string BundleId { get; set; } = string.Empty; public string KeyId { get; set; } = string.Empty; public string TeamId { get; set; } = string.Empty; public bool HasPrivateKey { get; set; } } public class FcmCredentialsInfoDto { public string? ProjectId { get; set; } public bool HasCredentials { get; set; } }