mirror of
https://github.com/bitwarden/server.git
synced 2026-02-01 22:53:12 +08:00
14 lines
285 B
C#
14 lines
285 B
C#
|
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
|
|||
|
|
namespace Bit.Admin.Models
|
|||
|
|
{
|
|||
|
|
public class CreateProviderModel
|
|||
|
|
{
|
|||
|
|
public CreateProviderModel() { }
|
|||
|
|
|
|||
|
|
[Display(Name = "Owner Email")]
|
|||
|
|
[Required]
|
|||
|
|
public string OwnerEmail { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|