1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-04 09:32:48 -05:00
Files
bitwarden/src/Api/Models/Response/UserKeyResponseModel.cs
2022-08-29 16:06:55 -04:00

17 lines
351 B
C#

using Bit.Core.Models.Api;
namespace Bit.Api.Models.Response;
public class UserKeyResponseModel : ResponseModel
{
public UserKeyResponseModel(Guid id, string key)
: base("userKey")
{
UserId = id.ToString();
PublicKey = key;
}
public string UserId { get; set; }
public string PublicKey { get; set; }
}