mirror of
https://github.com/bitwarden/server
synced 2025-12-25 20:53:16 +00:00
tool to promote admin user to org owner
This commit is contained in:
15
src/Admin/Models/PromoteAdminModel.cs
Normal file
15
src/Admin/Models/PromoteAdminModel.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user