EmbryoDataResult.cs 546 B

1234567891011121314151617181920212223
  1. using ivf_tl_Entity.Entity.balance;
  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.Entity.Result
  8. {
  9. public class EmbryoDataResult
  10. {
  11. public List<Dish> embryoVOList { get; set; }
  12. public List<Balance> balanceList { get; set; }
  13. }
  14. public class GetHouseCultureListResult
  15. {
  16. public List<Dish> embryoCultureRecords { get; set; }
  17. public List<Balance> balances { get; set; }
  18. }
  19. }