HfModel.cs 325 B

1234567891011121314151617
  1. using NEducation.Code;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Web;
  6. namespace NEducation.Models
  7. {
  8. public class HfModel
  9. {
  10. public HfData hfDataParent { get; set; }
  11. public List<HfData> hfDatas { get; set; }
  12. public HfData content { get; set; }
  13. }
  14. }