SPMS_API/SPMS.Application/DTOs/Push/PushSendRequestDto.cs

15 lines
333 B
C#

using System.ComponentModel.DataAnnotations;
namespace SPMS.Application.DTOs.Push;
public class PushSendRequestDto
{
[Required]
public string MessageCode { get; set; } = string.Empty;
[Required]
public string DeviceId { get; set; } = string.Empty;
public Dictionary<string, string>? Variables { get; set; }
}