1. No results found.

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

CustomerLoggedOutEvent.cs

namespace Nop.Core.Domain.Customers;

/// 
/// "Customer is logged out" event
/// 
public partial class CustomerLoggedOutEvent
{
    /// 
    /// Ctor
    /// 
    /// Customer
    public CustomerLoggedOutEvent(Customer customer)
    {
        Customer = customer;
    }

    /// 
    /// Get or set the customer
    /// 
    public Customer Customer { get; }
}