using System.Linq; using PetaPoco; namespace Sony.Filtr.Playlists.Spotify.Model { [TableName("tblSpotifyPlaylist")] [PrimaryKey("PlaylistId", autoIncrement = false)] public class SpotifyPlaylistTrackingReference { public string PlaylistId { get; set; } public string PlaylistUri => $"spotify:playlist:{PlaylistId}"; public string Name { get; set; } public string User { get; set; } public bool SaveTracklist { get; set; } public string SnapshotId { get; set; } } }