You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

17 lines
508 B

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; }
}
}