mirror of
https://github.com/bitwarden/server.git
synced 2025-06-12 22:10:50 -05: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; }
|
|
}
|
|
}
|