GetHouseStateData.cs 415 B

12345678910111213141516
  1. using ivf_tl_Entity.GlobalEntitys;
  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 GetHouseStateData
  10. {
  11. public List<ExBalance> balances { get; set; } = new List<ExBalance>();
  12. public List<ExDish> embryoCultureRecords { get; set; } = new List<ExDish>();
  13. }
  14. }