using System.Collections.Generic; namespace BBWY.Client.Models { public class ProductListResponse { public int Count { get; set; } public IList Items { get; set; } } }