Files
blazor-hrm/Infrastructure/Authentication/Identity/DefaultAdminSettings.cs
T
2026-07-21 14:08:10 +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;
}