mirror of
https://bitbucket.org/myhomie/mycorerepository.git
synced 2025-12-06 09:41:19 +00:00
20 lines
590 B
C#
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; }
|
|
}
|
|
}
|