1
0
mirror of https://github.com/bitwarden/server synced 2026-01-09 03:53:42 +00:00
Files
server/src/Billing/Models/LoginModel.cs
2022-08-29 16:06:55 -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; }
}