22 lines
586 B
C#
22 lines
586 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SPMS.Application.DTOs.Push;
|
|
|
|
public class ScheduleMessageDto
|
|
{
|
|
[JsonPropertyName("schedule_id")]
|
|
public string ScheduleId { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("message_id")]
|
|
public string MessageId { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("service_id")]
|
|
public long ServiceId { get; set; }
|
|
|
|
[JsonPropertyName("scheduled_at")]
|
|
public string ScheduledAt { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("push_message")]
|
|
public PushMessageDto PushMessage { get; set; } = new();
|
|
}
|