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.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

TrackModel.cs 465B

1234567891011121314151617
  1. using MongoDB.Bson;
  2. using MongoDB.Bson.Serialization.Attributes;
  3. namespace IdentityProvider.Models
  4. {
  5. public class TrackModel
  6. {
  7. [BsonId]
  8. [BsonRepresentation(BsonType.ObjectId)]
  9. public string Id { get; set; }
  10. public string Title { get; set; }
  11. public string Artist { get; set; }
  12. public string Album { get; set; }
  13. public string UserId { get; set; }
  14. public string TrackId { get; set; }
  15. }
  16. }