SearchBusinessResponse.cs 474 B

123456789101112131415161718
  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 SearchBusinessResponse
  9. {
  10. public int current { get; set; }
  11. public string name { get; set; }
  12. //private long? parentId { get; set; }
  13. public int size { get; set; }
  14. public int? state { get; set; }
  15. public string url { get; set; }
  16. }
  17. }