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

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

16 lines
357 B
C#
Raw Normal View History

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; }
}
}