using ProtoBuf; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace TEAMModelGrpc.Models { [ProtoContract] public class StringDto { [ProtoMember(1)] public string name { get; set; } } }