Files
Govor/Govor.Application/Interfaces/PushNotifications/Models/PushMessage.cs
T
2026-03-07 21:36:27 +07:00

10 lines
395 B
C#

namespace Govor.Application.Interfaces.PushNotifications.Models;
public class PushMessage
{
public string Title { get; set; } = string.Empty;
public string Body { get; set; } = string.Empty;
public string Tag { get; set; } = string.Empty;
public Dictionary<string, string> Data { get; set; } = new();
public string? ChannelId { get; set; } = "chat_messages"; //for Android
}