Newer
Older
Warehouse / src / Infrastructure / Authentication / External / Model / ExternalUserData.cs
@Derek Comartin Derek Comartin on 22 Aug 2023 354 bytes Init
namespace MyWarehouse.Infrastructure.Authentication.External.Model;

public record ExternalUserData
{
    public string Email { get; init; } = null!;
    public bool EmailVerified { get; init; }
    public string FullName { get; init; } = null!;
    public string FirstName { get; init; } = null!;
    public string LastName { get; init; } = null!;
}