using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using PetaPoco; namespace Sony.Filtr.Playlists.Spotify.Model { [TableName("tblSpotifyPlaylistChangeHistory")] [PrimaryKey("Id")] public class PlaylistChangeHistoryEntry { public int Id { get; set; } public string PlaylistId { get; set; } public DateTime Date { get; set; } public PlaylistChangeType ChangeType { get; set; } public string OldValue { get; set; } public string NewValue { get; set; } [ResultColumn] public DateTime Timestamp { get; set; } } }