SettingDataApiData.cs 665 B

12345678910111213141516171819202122
  1. using ivf_tl_Entity.DebugEntitys;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace ivf_tl_Entity.DTO
  8. {
  9. public class SettingDataApiData
  10. {
  11. public List<HouseInfo> houseList { get; set; } = new List<HouseInfo>();
  12. public List<HousePhotographLocation> housePhotographLocation { get; set; } = new List<HousePhotographLocation>();
  13. public List<HouseWellSetting> houseWellSettingList { get; set; } = new List<HouseWellSetting>();
  14. public tlInfoDTO tlInfo { get; set; }
  15. public tlSettingDTO tlSetting { get; set; }
  16. }
  17. }