using System; using System.Linq; using PetaPoco; namespace Sony.Filtr.Contracts.Entities { [TableName("tblSeason")] [PrimaryKey("Id", autoIncrement = true)] [Serializable] public class Season { public const string Version = "4"; public int Id { get; set; } public string Name { get; set; } public int ApplicationId { get; set; } public string SpotifyUri { get; set; } public string Label { get; set; } public string Description { get; set; } public bool ThemeActive { get; set; } public string HeaderBackgroundColor { get; set; } public string BackgroundColor { get; set; } public string TextColor { get; set; } public string AccentColor { get; set; } public string AccentColorPlaylist { get; set; } public string AccentColorPlaylists { get; set; } public string AccentColorReleases { get; set; } public string HeaderBackgroundImage { get; set; } public string HeaderStartBackgroundImage { get; set; } public string HeaderPlaylistsBackgroundImage { get; set; } public string HeaderReleasesBackgroundImage { get; set; } public string HeaderPlaylistBackgroundImage { get; set; } } }