Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

RecurringPaymentHistory.cs

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; }
}