namespace Microsoft.eShopOnContainers.Services.Identity.API.Models.AccountViewModels { public record SendCodeViewModel { public string SelectedProvider { get; init; } public ICollection Providers { get; init; } public string ReturnUrl { get; init; } public bool RememberMe { get; init; } } }