Files
components/LiteCharms.Features.MidrandBooks/Payments/Entities/PaymentGatewayLedger.cs
T
2026-06-02 23:44:45 +02:00

12 lines
371 B
C#

using LiteCharms.Features.MidrandBooks.Orders.Entities;
namespace LiteCharms.Features.MidrandBooks.Payments.Entities;
[EntityTypeConfiguration<PaymentGatewayLedgerConfiguration, PaymentGatewayLedger>]
public class PaymentGatewayLedger : Models.PaymentGatewayLedger
{
public virtual Order? Order { get; set; }
public virtual Payment? Payment { get; set; }
}