using System;
|
|
|
|
namespace GMCabsDriverAssistant.Models
|
|
{
|
|
public class NotificationDto
|
|
{
|
|
public string Id { get; set; }
|
|
public int UserID { get; set; }
|
|
public string Subject { get; set; }
|
|
public string Body { get; set; }
|
|
public string FromName { get; set; }
|
|
public DateTime SentDate { get; set; }
|
|
public DateTime? ReceivedDate { get; set; }
|
|
public DateTime? DateViewed { get; set; }
|
|
public bool Important { get; set; }
|
|
}
|
|
}
|