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 toosl; public string Name { get { return name; } set { name = value; } } public string Code { get { return code; } set { code = value; } } public List Toosl { get { return toosl; } set { toosl = value; } } public IndexToolModel(string name, string code, List list) { this.Name = name; this.Code = code; this.Toosl = list; } } }