18 lines
508 B
C#
Raw Normal View History

2023-05-04 12:05:13 +05:30
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; }
}
}