//------------------------------------------------------------------------------ // // This code was generated from a template. // // Manual changes to this file may cause unexpected behavior in your application. // Manual changes to this file will be overwritten if the code is regenerated. // //------------------------------------------------------------------------------ namespace BuddyFinance.Model { using System; using System.Collections.Generic; public partial class Notification { public int Id { get; set; } public string Recipient { get; set; } public string Message { get; set; } public string Status { get; set; } public int NotificationTypeId { get; set; } public System.DateTime DateSent { get; set; } public virtual NotificationType NotificationType { get; set; } } }