namespace Common.Model { public class NotifiCationInfo { public string customerId { get; set; } } public class NotifiCationDetailInfo { public string rowId { get; set; } } public class GetNotifiCationInfo { public string rowId { get; set; } public string title { get; set; } public string createDate { get; set; } public string isRead { get; set; } public string type { get; set; } public string extra { get; set; } } public class GetNotifyCationDetailInfo { public string title { get; set; } public string body { get; set; } public string createDate { get; set; } public string imageURL { get; set; } } public class GetNotifiCationListInfo { public string rowId { get; set; } public string customerId { get; set; } public string title { get; set; } public string body { get; set; } public string createDate { get; set; } public string isRead { get; set; } public string type { get; set; } public string extra { get; set; } public string category { get; set; } public string url { get; set; } public string isClickable { get; set; } } }