15 lines
333 B
C#
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; }
|
|
}
|