namespace IdentityProvider.Models { public class SpotifyDbConfig { public string ConnectionString { get; set; } = "mongodb://127.0.0.1:27017"; public string DatabaseName { get; set; } = "spotifyDb"; public string UserCollection { get; set; } = "Users"; public string TracksCollection { get; set; } = "Tracks"; } }