NoticeType.cs 523 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace wispro.sp.web.Models
  6. {
  7. public class NoticeType
  8. {
  9. public string Id { get; set; }
  10. public string Title { get; set; }
  11. public string Logo { get; set; }
  12. public string Description { get; set; }
  13. public string UpdatedAt { get; set; }
  14. public string Member { get; set; }
  15. public string Href { get; set; }
  16. public string MemberLink { get; set; }
  17. }
  18. }