Selector/Selector.Model/Scrobble/LastfmSpotifyMapping.cs
andy fbbd42f97a working scrobble mapping command
added scrobble mapping repo
2022-02-24 00:27:34 +00:00

27 lines
675 B
C#

namespace Selector.Model
{
public abstract class LastfmSpotifyMapping
{
public int Id { get; set; }
public string SpotifyUri { get; set; }
}
public class TrackLastfmSpotifyMapping: LastfmSpotifyMapping
{
public string LastfmTrackName { get; set; }
public string LastfmArtistName { get; set; }
}
public class AlbumLastfmSpotifyMapping : LastfmSpotifyMapping
{
public string LastfmAlbumName { get; set; }
public string LastfmArtistName { get; set; }
}
public class ArtistLastfmSpotifyMapping : LastfmSpotifyMapping
{
public string LastfmArtistName { get; set; }
}
}