17 lines
677 B
C#
17 lines
677 B
C#
namespace HiVakil.Domain.Entities.Payments;
|
|
|
|
public class Payment
|
|
{
|
|
|
|
public string FactorNumber { get; internal set; } = string.Empty;
|
|
public double Amount { get; internal set; }
|
|
public string Description { get; internal set; } = string.Empty;
|
|
public string TransactionCode { get; internal set; } = string.Empty;
|
|
public string CardPan { get; internal set; } = string.Empty;
|
|
public string Authority { get; internal set; } = string.Empty;
|
|
public PaymentType Type { get; internal set; }
|
|
public PaymentStatus Status { get; internal set; }
|
|
|
|
public Guid PayerId { get; internal set; }
|
|
public ApplicationUser? Payer { get; internal set; }
|
|
} |