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

17 lines
446 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 ProuctGroup { get; set; }
public string Vat { get; set; }
public string ServiceTax { get; set; }
2010-03-02 17:56:21 +00:00
public Guid ProductID { get; set; }
}
}