14 lines
333 B
C#
14 lines
333 B
C#
|
using System;
|
|||
|
using Tanshu.Accounts.Entities.Auth;
|
|||
|
|
|||
|
namespace Tanshu.Accounts.Entities
|
|||
|
{
|
|||
|
public class Reprint
|
|||
|
{
|
|||
|
public virtual int ReprintID { get; set; }
|
|||
|
public virtual User User { get; set; }
|
|||
|
public virtual DateTime Date { get; set; }
|
|||
|
public virtual Voucher Voucher { get; set; }
|
|||
|
}
|
|||
|
}
|