namespace Nop.Core.Domain.Orders; /// /// Represents a recurring payment history /// public partial class RecurringPaymentHistory : BaseEntity { /// /// Gets or sets the recurring payment identifier /// public int RecurringPaymentId { get; set; } /// /// Gets or sets the order identifier /// public int OrderId { get; set; } /// /// Gets or sets the date and time of entity creation /// public DateTime CreatedOnUtc { get; set; } }