| 1234567891011121314151617 |
- using NEducation.Code;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace NEducation.Models
- {
- public class HfModel
- {
- public HfData hfDataParent { get; set; }
- public List<HfData> hfDatas { get; set; }
- public HfData content { get; set; }
- }
- }
|