using System; namespace Bootstrap.DataAccess { /// /// /// public class Notifications { /// /// /// public string Category { get; set; } /// /// /// public string Title { get; set; } /// /// /// public string Content { get; set; } /// /// /// public DateTime RegisterTime { get; set; } /// /// /// public string Status { get; set; } } }