using System; using System.Linq; namespace Sony.Filtr.AdminAPI.ViewModels { [Serializable] public class BuzzOwnerViewModel { public string AccountName { get; set; } public string AccountId { get; set; } public int? CategoryId { get; set; } public string CategoryName { get; set; } public string MarketCode { get; set; } } }