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

17 lines
402 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 PaymentBO
{
public Guid PaymentID { get; set; }
public DateTime Date { get; set; }
public string Type { get; set; }
public Guid CashierID { get; set; }
public decimal Amount { get; set; }
public string Narration { get; set; }
2010-03-02 17:56:21 +00:00
}
}