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.

UserInfoResponse.cs 449B

12345678910111213141516171819
  1. using Newtonsoft.Json;
  2. using ProtoBuf;
  3. namespace GrpcShared.DTO.User
  4. {
  5. [ProtoContract]
  6. public class UserInfoResponse
  7. {
  8. [ProtoMember(1)]
  9. [JsonProperty("email")]
  10. public string? Email { get; set; }
  11. [ProtoMember(2)]
  12. [JsonProperty("id")]
  13. public string? Id { get; set; }
  14. [ProtoMember(3)]
  15. [JsonProperty("display_name")]
  16. public string? DisplayName{ get; set; }
  17. }
  18. }