1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-12 22:10:50 -05:00
bitwarden/src/Admin/Models/PromoteAdminModel.cs
2020-02-14 20:13:25 -05:00

16 lines
357 B
C#

using System;
using System.ComponentModel.DataAnnotations;
namespace Bit.Admin.Models
{
public class PromoteAdminModel
{
[Required]
[Display(Name = "Admin User Id")]
public Guid? UserId { get; set; }
[Required]
[Display(Name = "Organization Id")]
public Guid? OrganizationId { get; set; }
}
}