//------------------------------------------------------------------------------ // // 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 Neo.Afx.Services.Notifications.Entities { using System.Web.Script.Serialization; using System; using System.Collections.Generic; public partial class Notification { public long NotificationID { get; set; } public short NotificationCategoryID { get; set; } public long UserID { get; set; } public Nullable EntityID { get; set; } public Nullable ItemID { get; set; } public string Notification1 { get; set; } public long CreatedByID { get; set; } public System.DateTime CreatedDate { get; set; } public Nullable ReadByID { get; set; } public Nullable ReadDate { get; set; } public short NotificationTypeID { get; set; } public virtual NotificationCategory NotificationCategory { get; set; } } }