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.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

TrackResponse.cs 545B

1234567891011121314151617181920212223
  1. using ProtoBuf;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace GrpcShared.DTO.Db
  8. {
  9. [ProtoContract]
  10. [ProtoInclude(6, typeof(SaveTrackRequest))]
  11. public class TrackResponse
  12. {
  13. [ProtoMember(1)]
  14. public string Id { get; set; }
  15. [ProtoMember(2)]
  16. public string Title { get; set; }
  17. [ProtoMember(3)]
  18. public string Artist { get; set; }
  19. [ProtoMember(4)]
  20. public string Album { get; set; }
  21. }
  22. }