mirror of
https://github.com/bitwarden/server
synced 2026-01-03 09:03:44 +00:00
passwordless signin for billing portal
This commit is contained in:
11
src/Billing/Models/LoginModel.cs
Normal file
11
src/Billing/Models/LoginModel.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Bit.Billing.Models
|
||||
{
|
||||
public class LoginModel
|
||||
{
|
||||
[Required]
|
||||
[EmailAddress]
|
||||
public string Email { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user