Try your search with a different keyword or use * as a wildcard.
using System.ComponentModel.DataAnnotations;
using Microsoft.AspNetCore.Mvc.Rendering;
using Nop.Data;
using Nop.Web.Framework.Mvc;
namespace Nop.Web.Models.Install;
public partial record InstallModel : INopConnectionStringInfo
{
public InstallModel()
{
AvailableLanguages = new List();
AvailableDataProviders = new List();
AvailableCountries = new List();
}
[DataType(DataType.EmailAddress)]
public string AdminEmail { get; set; }
[NoTrim]
[DataType(DataType.Password)]
public string AdminPassword { get; set; }
[NoTrim]
[DataType(DataType.Password)]
public string ConfirmPassword { get; set; }
public bool UseCustomCollation { get; set; }
public string Collation { get; set; }
public bool CreateDatabaseIfNotExists { get; set; }
public bool DisableSampleDataOption { get; set; }
public bool InstallSampleData { get; set; }
public bool ConnectionStringRaw { get; set; }
public bool InstallRegionalResources { get; set; }
public bool SubscribeNewsletters { get; set; }
public string DatabaseName { get; set; }
public string ServerName { get; set; }
public bool IntegratedSecurity { get; set; }
public string Username { get; set; }
[NoTrim]
[DataType(DataType.Password)]
public string Password { get; set; }
public string ConnectionString { get; set; }
public List AvailableLanguages { get; set; }
public List AvailableCountries { get; set; }
public DataProviderType DataProvider { get; set; }
public string Country { get; set; }
public List AvailableDataProviders { get; set; }
public IDictionary RawDataSettings => new Dictionary();
public string RestartUrl { get; set; }
}