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.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. }