using System; using PetaPoco; namespace Sony.Filtr.Tasks.Tasks.EveryNoise { [Serializable] [TableName("tblSpotifyRelease")] public class EveryNoiseRelease { public DateTime? Date { get; set; } public string AlbumUri { get; set; } public EveryNoiseReleaseType? ReleaseType { get; set; } public string Title { get; set; } public string ArtistName { get; set; } public int? ArtistRank { get; set; } public int? TrackCount { get; set; } } }