StringDto.cs 277 B

123456789101112131415
  1. using ProtoBuf;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Threading.Tasks;
  6. namespace TEAMModelGrpc.Models
  7. {
  8. [ProtoContract]
  9. public class StringDto
  10. {
  11. [ProtoMember(1)]
  12. public string name { get; set; }
  13. }
  14. }