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