Files
components/LiteCharms.Features.MidrandBooks/Payments/Entities/PaymentLedger.cs
T
2026-05-31 12:05:59 +02:00

17 lines
513 B
C#

using LiteCharms.Features.MidrandBooks.Customers.Entities;
using LiteCharms.Features.MidrandBooks.Orders.Entities;
namespace LiteCharms.Features.MidrandBooks.Payments.Entities;
[EntityTypeConfiguration<PaymentLedgerConfiguration, PaymentLedger>]
public class PaymentLedger : Models.PaymentLedger
{
public virtual Payment? Payment { get; set; }
public virtual Order? Order { get; set; }
public virtual Customer? Customer { get; set; }
public virtual PaymentGateway? Gateway { get; set; }
}