Files
server/src/Api/Models/Response/UserKeyResponseModel.cs

20 lines
426 B
C#
Raw Normal View History

2017-03-04 21:28:41 -05:00
using System;
2017-03-08 21:45:08 -05:00
using Bit.Core.Models.Table;
2017-03-04 21:28:41 -05:00
using Bit.Core.Enums;
namespace Bit.Api.Models
{
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; }
}
}