1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-07 14:08:13 -05:00
bitwarden/src/Admin/Models/LoginModel.cs
2022-08-29 16:06:55 -04:00

14 lines
298 B
C#

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