using ProtoBuf; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace TEAMModelOS.GRPC.Models.Dtos { [ProtoContract] public class RequestDict { /// /// 查询dict /// [ProtoMember(1)] public Dictionary dict { get; set; } [ProtoMember(2)] public Dictionary cv { get; set; } [ProtoMember(3)] public List lsit { get; set; } } [ProtoContract] public class Cv { /// /// 查询dict /// [ProtoMember(1)] public string code { get; set; } /// /// 查询dict /// [ProtoMember(2)] public string val { get; set; } } }