- namespace IdentityProvider.Models
- {
- public class SpotifyDbConfig
- {
- public string ConnectionString { get; set; } = null!;
- public string DatabaseName { get; set; } = null!;
- public string UserCollection { get; set; } = null!;
- public string TracksCollection { get; set; } = null!;
- }
- }
|