ExportDishResponse.cs 630 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ivf_tl_Entity.Response
  7. {
  8. public class ExportDishResponse
  9. {
  10. public string houseSn { get; set; }
  11. public List<int> ids { get; set; } = new List<int>();
  12. public string tlSn { get; set; }
  13. public bool freezing { get; set; } = false;
  14. public bool invalid { get; set; } = false;
  15. public bool transplant { get; set; } = false;
  16. public bool deleted { get; set; } = false;
  17. public bool unmark { get; set; } = false;
  18. }
  19. }