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.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

TrackRequest.cs 383B

12345678910111213141516171819
  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: SessionMessage
  12. {
  13. [ProtoMember(1)]
  14. [JsonProperty("id")]
  15. public string? TrackID { get; set; }
  16. }
  17. }