using System.Collections.Generic; using PetaPoco; using Sony.Filtr.Contracts.Definitions; namespace Sony.Filtr.Contracts.Entities.Buzz { [TableName("BuzzUser")] [PrimaryKey("ID", autoIncrement = true)] [ExplicitColumns] public class BuzzUser { [Column("ID")] public int ID { get; set; } [Column("Username")] public string Username { get; set; } [Column("DisplayName")] public string DisplayName { get; set; } [Column("CategoryID")] public int? BuzzCategoryId { get; set; } [Column("ServiceType")] public ServiceType ServiceType { get; set; } [Column("MusicServiceId")] public int MusicServiceId { get; set; } [Column("CountryCode")] public string CountryCode { get; set; } [Column("ImportPlaylists")] public bool ImportPlaylists { get; set; } [Column("Subscribers")] public int? Subscribers { get; set; } [Column("PlaylistSubscribers")] public long? PlaylistSubscribers { get; set; } [Column("Image")] public string Image { get; set; } [Column("Error")] public bool Error { get; set; } [ResultColumn] public List Tags { get; set; } public List BuzzGroups { get; set; } } }