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.
| 1234567891011121314 |
- using MongoDB.Bson;
- using MongoDB.Bson.Serialization.Attributes;
-
- namespace IdentityProvider.Models
- {
- public class UserModel
- {
- [BsonId]
- [BsonRepresentation(BsonType.ObjectId)]
- public string Id { get; set; }
- public string Token { get; set; }
- public string RefreshToken { get; set; }
- }
- }
|