1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-02 16:42:50 -05:00
Files
bitwarden/src/Billing/Models/LoginModel.cs
2022-08-29 14:53:16 -04:00

11 lines
180 B
C#

using System.ComponentModel.DataAnnotations;
namespace Bit.Billing.Models;
public class LoginModel
{
[Required]
[EmailAddress]
public string Email { get; set; }
}