yavsc/yavscModel/WorkFlow/BasketImpact.cs

17 lines
269 B
C#

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