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.
Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
| 12345678910111213141516 |
- using MongoDB.Bson;
- using MongoDB.Bson.Serialization.Attributes;
-
- namespace IdentityProvider.Models
- {
- public class TrackModel
- {
- [BsonId]
- [BsonRepresentation(BsonType.ObjectId)]
- public string Id { get; set; }
- public string Title { get; set; }
- public string Artist { get; set; }
- public string Album { get; set; }
- public string UserId { get; set; }
- }
- }
|