20 lines
590 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace MyCore.Interfaces.DTO
{
public class NotificationDTO
{
public string notificationTitle { get; set; }
public string notificationMessage { get; set; }
public string notificationLabelButton { get; set; }
public string title { get; set; }
public string body { get; set; }
public string type { get; set; }
public bool isPushNotification { get; set; }
public bool isButton { get; set; }
public string buttonLabel { get; set; }
}
}