123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace CP.Kjh.Models
- {
- public class NewsModel
- {
- public string Name { get; set; }
- public string NewName { get; set; }
- public int NewsType { get; set; }
- public string More { get; set; }
- public string ShowView { get; set; }
-
- }
-
- }
|