using Newtonsoft.Json; using ProtoBuf; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GrpcShared.DTO.TrackByID { [ProtoContract] public class TrackRequest { [ProtoMember(1)] [JsonProperty("id")] public string? TrackID { get; set; } [ProtoMember(2)] [JsonProperty("token")] public string? Token { get; set; } } }