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

15 lines
356 B
C#
Raw Normal View History

2010-03-02 17:56:21 +00:00
using System;
using System.Runtime.Serialization;
namespace Tanshu.Accounts.Contracts
{
public class ProductDisplaySmallBO
{
public int Code { get; set; }
public string Name { get; set; }
public decimal Price { get; set; }
public string Category { get; set; }
public Guid ProductID { get; set; }
}
}