| 1234567891011121314151617181920212223 |
- using ivf_tl_Entity.Entity.balance;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.Entity.Result
- {
- public class EmbryoDataResult
- {
- public List<Dish> embryoVOList { get; set; }
- public List<Balance> balanceList { get; set; }
- }
- public class GetHouseCultureListResult
- {
- public List<Dish> embryoCultureRecords { get; set; }
- public List<Balance> balances { get; set; }
- }
- }
|