選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

19 行
422 B

  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace DTO
  6. {
  7. public class FoodDto
  8. {
  9. [JsonProperty("gateFoodList")]
  10. public List<SubFoodDto> GateFood { get; set; } = new List<SubFoodDto>();
  11. }
  12. public class SubFoodDto
  13. {
  14. public string GateId { get; set; }
  15. public List<string> Foods { get; set; } = new List<string>();
  16. }
  17. }