123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Models.Views
- {
- public class AdvertisementModel
- {
-
-
-
-
-
-
-
-
-
- public string ID { get; set; }
-
-
-
-
- public string Title { get; set; }
-
-
-
-
- public string Category { get; set; }
-
-
-
-
- public int CategoryId { get; set; }
-
-
-
-
- public int Position { get; set; }
-
-
-
-
- public string Href { get; set; }
-
-
-
-
- public string AddTime { get; set; }
-
-
-
-
- public string TermOfValidity { get; set; }
-
-
-
-
- public string Remark { get; set; }
-
-
-
-
- public bool? IsEnable { get; set; }
-
-
-
-
- public bool? IsDelete { get; set; }
- }
- }
|