yavsc/yavscModel/WorkFlow/BasketImpact.cs

16 lines
269 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
2014-10-06 04:58:47 +02:00
namespace Yavsc.Model.WorkFlow
{
public class BasketImpact
{
public string ProductRef { get; set; }
public int Count { get; set; }
public string Message { get; set; }
}
}