Blazor & WASM in combination to get statistics from Spotify API for performing the song analysis. With separate microservices for auth, Spotify, user data tracking, and application, connected through gRPC with Polly.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

TrackRequest.cs 459B

123456789101112131415161718192021
  1. using Newtonsoft.Json;
  2. using ProtoBuf;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace GrpcShared.DTO.TrackByID
  9. {
  10. [ProtoContract]
  11. public class TrackRequest
  12. {
  13. [ProtoMember(1)]
  14. [JsonProperty("id")]
  15. public string? TrackID { get; set; }
  16. [ProtoMember(2)]
  17. [JsonProperty("token")]
  18. public string? Token { get; set; }
  19. }
  20. }