Skip to content

Instantly share code, notes, and snippets.

@meriturva
Last active August 22, 2019 14:23
Show Gist options
  • Save meriturva/e2f6636a81ed7090c73b90fb9b119f75 to your computer and use it in GitHub Desktop.
Save meriturva/e2f6636a81ed7090c73b90fb9b119f75 to your computer and use it in GitHub Desktop.
Notification.cs
public class Notification
{
public long Id { get; set; }
public string TemplateName { get; set; }
public long UserId { get; set; }
public string EntityId { get; set; }
public DateTime Date { get; set; }
public DateTime? EmailNotificationSentDate { get; set; }
public DateTime? PushNotificationSentDate { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment