15 lines
297 B
C#
15 lines
297 B
C#
|
using System;
|
|||
|
using System.Runtime.Serialization;
|
|||
|
|
|||
|
namespace Tanshu.Accounts.Contracts
|
|||
|
{
|
|||
|
[DataContract]
|
|||
|
public class ProductDisplayBO : ProductBO
|
|||
|
{
|
|||
|
[DataMember]
|
|||
|
public decimal Price { get; set; }
|
|||
|
[DataMember]
|
|||
|
public string Type { get; set; }
|
|||
|
}
|
|||
|
}
|