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.

SpotifyDbConfig.cs 328B

12345678910
  1. namespace IdentityProvider.Models
  2. {
  3. public class SpotifyDbConfig
  4. {
  5. public string ConnectionString { get; set; } = null!;
  6. public string DatabaseName { get; set; } = null!;
  7. public string UserCollection { get; set; } = null!;
  8. public string TracksCollection { get; set; } = null!;
  9. }
  10. }