| 12345678910111213141516171819202122 |
- using ivf_tl_Entity.DebugEntitys;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.DTO
- {
- public class SettingDataApiData
- {
- public List<HouseInfo> houseList { get; set; } = new List<HouseInfo>();
- public List<HousePhotographLocation> housePhotographLocation { get; set; } = new List<HousePhotographLocation>();
- public List<HouseWellSetting> houseWellSettingList { get; set; } = new List<HouseWellSetting>();
- public tlInfoDTO tlInfo { get; set; }
- public tlSettingDTO tlSetting { get; set; }
- }
- }
|