Webiant Logo Webiant Logo
  1. No results found.

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

CustomerChangeWorkingLanguageEvent.cs

namespace Nop.Core.Domain.Customers;

/// <summary>
/// Customer change working language event
/// </summary>
public partial class CustomerChangeWorkingLanguageEvent
{
    /// <summary>
    /// Ctor
    /// </summary>
    /// <param name="customer">Customer</param>
    public CustomerChangeWorkingLanguageEvent(Customer customer)
    {
        Customer = customer;
    }

    /// <summary>
    /// Customer
    /// </summary>
    public Customer Customer
    {
        get;
    }
}