19 lines
507 B
C#
19 lines
507 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
using FluentNHibernate.Mapping;
|
|
using Tanshu.Accounts.Entities.Auth;
|
|
|
|
namespace Tanshu.Accounts.Entities
|
|
{
|
|
public class Payment
|
|
{
|
|
public virtual int PaymentID { get; set; }
|
|
public virtual DateTime Date { get; set; }
|
|
public virtual string Type { get; set; }
|
|
public virtual User Cashier { get; set; }
|
|
public virtual decimal Amount { get; set; }
|
|
public virtual string Narration { get; set; }
|
|
|
|
}
|
|
}
|