mirror of
https://github.com/bitwarden/server.git
synced 2026-02-03 23:53:19 +08:00
16 lines
357 B
C#
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; }
|
|||
|
|
}
|
|||
|
|
}
|