You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

42 lines
1.3 KiB

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; }
}
}