Ported some code from Blazor version of project.

This commit is contained in:
2021-07-12 03:07:16 -05:00
parent e953c52092
commit 9e55b459fc
14 changed files with 873 additions and 141 deletions

View File

@@ -0,0 +1,8 @@
namespace MultiShop.Options
{
public class IdentificationOptions
{
public const string Identification = "Identification";
public bool RegistrationEnabled { get; set; }
}
}