SPMS_API/SPMS.Application/DTOs/Push/PushResultDto.cs
2026-02-10 15:44:32 +09:00

12 lines
350 B
C#

namespace SPMS.Application.DTOs.Push;
public class PushResultDto
{
public string DeviceToken { get; set; } = string.Empty;
public bool IsSuccess { get; set; }
public string? ErrorCode { get; set; }
public string? ErrorMessage { get; set; }
public bool ShouldRemoveDevice { get; set; }
public bool ShouldRetry { get; set; }
}