- using ivf_tl_Entity.GlobalEntitys;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.DTO
- {
- public class GetHouseStateData
- {
- public List<ExBalance> balances { get; set; } = new List<ExBalance>();
- public List<ExDish> embryoCultureRecords { get; set; } = new List<ExDish>();
- }
- }
|