using System.Data.Common; using Sony.Filtr.Utility.Extensions; namespace Sony.Filtr.Spotify.Artists { public class SpotifyArtistsExport { public SpotifyArtistsExport() { } public SpotifyArtistsExport(DbDataReader reader) { artist_id = reader.GetString("artist_id"); artist_name = reader.GetString("artist_name"); most_recent_album_release_date = reader.GetString("most_recent_album_release_date"); most_recent_album_copyright = reader.GetString("most_recent_album_copyright"); most_recent_track_id = reader.GetString("most_recent_track_id"); most_recent_track_isrc = reader.GetString("most_recent_track_isrc"); } public string artist_id { get; set; } public string artist_name { get; set; } public string most_recent_album_release_date { get; set; } public string most_recent_album_copyright { get; set; } public string most_recent_track_id { get; set; } public string most_recent_track_isrc { get; set; } } }