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.
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
| 12345678910111213141516171819 |
- using Newtonsoft.Json;
- using ProtoBuf;
-
- namespace GrpcShared.DTO.User
- {
- [ProtoContract]
- public class UserInfoResponse
- {
- [ProtoMember(1)]
- [JsonProperty("email")]
- public string? Email { get; set; }
- [ProtoMember(2)]
- [JsonProperty("id")]
- public string? Id { get; set; }
- [ProtoMember(3)]
- [JsonProperty("display_name")]
- public string? DisplayName{ get; set; }
- }
- }
|