Try your search with a different keyword or use * as a wildcard.
namespace Nop.Web.Infrastructure.Installation;
///
/// Language class for installation process
///
public partial class InstallationLanguage
{
public InstallationLanguage()
{
Resources = new List();
}
public string Name { get; set; }
public string Code { get; set; }
public bool IsDefault { get; set; }
public bool IsRightToLeft { get; set; }
public List Resources { get; protected set; }
}
public partial class InstallationLocaleResource
{
public string Name { get; set; }
public string Value { get; set; }
}