Files
server/src/Admin/Models/PromoteAdminModel.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
305 B
C#
Raw Normal View History

using System.ComponentModel.DataAnnotations;
namespace Bit.Admin.Models;
2022-08-29 16:06:55 -04:00
public class PromoteAdminModel
{
[Required]
[Display(Name = "Admin User Id")]
public Guid? UserId { get; set; }
[Required]
[Display(Name = "Organization Id")]
public Guid? OrganizationId { get; set; }
}