mirror of
https://github.com/bitwarden/server.git
synced 2025-04-07 14:08:13 -05:00
14 lines
298 B
C#
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; }
|
|
}
|