1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-24 14:26:38 -05:00
bitwarden/src/Core/Models/Api/Request/ApiKeyRequestModel.cs
2019-03-04 09:52:43 -05:00

11 lines
205 B
C#

using System.ComponentModel.DataAnnotations;
namespace Bit.Core.Models.Api
{
public class ApiKeyRequestModel
{
[Required]
public string MasterPasswordHash { get; set; }
}
}