using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Yavsc.Model.WorkFlow { public class BasketImpact { public string ProductRef { get; set; } public int Count { get; set; } public string Message { get; set; } } }