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.

TopItemRequest.cs 529B

123456789101112131415161718192021222324
  1. using ProtoBuf;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace GrpcShared.DTO.TopItem
  9. {
  10. [ProtoContract]
  11. public class TopItemRequest : SessionMessage
  12. {
  13. [ProtoMember(1)]
  14. [DefaultValue(true)]
  15. public bool IsTracks { get; set; } = true;
  16. [ProtoMember(2)]
  17. public int? Limit { get; set; } = 9;
  18. [ProtoMember(3)]
  19. public int? Offset { get; set; }
  20. }
  21. }