10 lines
268 B
C#
10 lines
268 B
C#
using LiteCharms.Features.MidrandBooks.Orders.Entities;
|
|
|
|
namespace LiteCharms.Features.MidrandBooks.Payments.Entities;
|
|
|
|
[EntityTypeConfiguration<PaymentConfiguration, Payment>]
|
|
public class Payment : Models.Payment
|
|
{
|
|
public virtual Order? Order { get; set; }
|
|
}
|