9 lines
271 B
C#
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;
|
|
}
|