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

25 lines
456 B
C#
Raw Normal View History

2010-03-02 17:56:21 +00:00
using System;
using System.Runtime.Serialization;
namespace Tanshu.Accounts.Contracts
{
2010-03-02 17:56:21 +00:00
public class VoucherBO
{
2010-03-02 17:56:21 +00:00
public Guid VoucherID { get; set; }
2010-03-02 17:56:21 +00:00
public int Code { get; set; }
2010-03-02 17:56:21 +00:00
public DateTime? Date { get; set; }
2010-03-02 17:56:21 +00:00
public string Narration { get; set; }
2010-03-02 17:56:21 +00:00
public Guid UserID { get; set; }
2010-03-02 17:56:21 +00:00
public DateTime CreationDate { get; set; }
2010-03-02 17:56:21 +00:00
public DateTime LastEditDate { get; set; }
}
}