using System; using System.Collections.Generic; using System.Globalization; using PetaPoco; namespace Sony.Filtr.Contracts.Entities { [Serializable] [TableName("tblApplicationInstance")] [PrimaryKey("intApplicationInstanceId", autoIncrement = true)] public class Application { public const string Version = "2.0"; [Column("intApplicationInstanceId")] public int ID { get; set; } [Column("strName")] public string Name { get; set; } [Column("strLanguageID")] public CultureInfo CultureInfo { get; set; } [Column("strSpotifyRegionID")] public string SpotifyRegionCode { get; set; } [Column("blnActive")] public bool Active { get; set; } [Column("strGACountryName")] public string GACountryName { get; set; } [Column("blnFallbackApplication")] public bool FallbackApplication { get; set; } [Column("blnGlobalPush")] public bool GlobalPushApplication { get; set; } [Column("blnWorkout")] public bool WorkoutMarket { get; set; } [Column("blnIncludeOtherPlaylists")] public bool IncludeOtherPlaylists { get; set; } [Column("strDefaultService")] public string DefaultService { get; set; } [Column("strServiceList")] public List Services { get; set; } //public string MainDomain { get; set; } //public bool SpecialViewAllApplication { get; set; } } }