Files
blazor-crm/Infrastructure/Authentication/Identity/DefaultAdminSettings.cs
T
2026-07-21 13:59:38 +07:00

9 lines
271 B
C#

namespace Indotalent.Infrastructure.Authentication.Identity;
public class DefaultAdminSettings
{
public string Email { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
public string FullName { get; set; } = string.Empty;
}