12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace KJH55128_Rec.ViewModels
- {
- public class ZXViewModel
- {
- public int Id { get; set; }
- public string Name { get; set; }
- public int Cid { get; set; }
- public int Tid { get; set; }
- public int Status { get; set; }
- public int OrderBy { get; set; }
- public string Url { get; set; }
- public int type { get; set; }
- public string hTitle { get; set; }
- public string hKeywords { get; set; }
- public string hDescription { get; set; }
- public int TemplateId { get; set; }
- }
- public class IndexToolModel {
- string name;
- string code;
- List<ZXViewModel> toosl;
- public string Name
- {
- get
- {
- return name;
- }
- set
- {
- name = value;
- }
- }
- public string Code
- {
- get
- {
- return code;
- }
- set
- {
- code = value;
- }
- }
- public List<ZXViewModel> Toosl
- {
- get
- {
- return toosl;
- }
- set
- {
- toosl = value;
- }
- }
- public IndexToolModel(string name, string code, List<ZXViewModel> list)
- {
- this.Name = name;
- this.Code = code;
- this.Toosl = list;
- }
- }
- }
|