| 1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.Response
- {
- public class ExportDishResponse
- {
- public string houseSn { get; set; }
- public List<int> ids { get; set; } = new List<int>();
- public string tlSn { get; set; }
- public bool freezing { get; set; } = false;
- public bool invalid { get; set; } = false;
- public bool transplant { get; set; } = false;
- public bool deleted { get; set; } = false;
- public bool unmark { get; set; } = false;
- }
- }
|