narsil/Tanshu.Accounts.Contracts/Data Contracts/ProductDisplayBO.cs

15 lines
298 B
C#
Raw Normal View History

2010-03-02 17:56:21 +00:00
using System;
using System.Runtime.Serialization;
namespace Tanshu.Accounts.Contracts
{
[DataContract]
public class ProductDisplayBO : ProductBO
{
[DataMember]
public decimal Price { get; set; }
[DataMember]
2011-01-22 12:38:30 +00:00
public string Group { get; set; }
2010-03-02 17:56:21 +00:00
}
}