12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace wispro.sp.web.Models
- {
- public class NoticeType
- {
- public string Id { get; set; }
- public string Title { get; set; }
- public string Logo { get; set; }
- public string Description { get; set; }
- public string UpdatedAt { get; set; }
- public string Member { get; set; }
- public string Href { get; set; }
- public string MemberLink { get; set; }
- }
- }
|