Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Text;
-
- namespace DTO
- {
- public class Locs
- {
- /// <summary>
- /// 编码
- /// </summary>
- public string Key { get; set; }
- /// <summary>
- ///
- /// </summary>
- public bool IsShow { get; set; }
- }
-
- public class GateSetUp
- {
- /// <summary>
- /// 档口id1
- /// </summary>
- public string GateId { get; set; }
- /// <summary>
- ///
- /// </summary>
- [JsonProperty("locsList")]
- public List<Locs> Locs { get; set; }
- }
- }
|