12 lines
350 B
C#
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; }
|
|
}
|