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.

UserModel.cs 341B

1234567891011121314
  1. using MongoDB.Bson;
  2. using MongoDB.Bson.Serialization.Attributes;
  3. namespace IdentityProvider.Models
  4. {
  5. public class UserModel
  6. {
  7. [BsonId]
  8. [BsonRepresentation(BsonType.ObjectId)]
  9. public string Id { get; set; }
  10. public string Token { get; set; }
  11. public string RefreshToken { get; set; }
  12. }
  13. }