1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-20 09:23:50 +00:00
Files
mobile/src/App/Models/Api/Response/KeysResponse.cs
2017-04-25 16:05:13 -04:00

9 lines
171 B
C#

namespace Bit.App.Models.Api
{
public class KeysResponse
{
public string PublicKey { get; set; }
public string PrivateKey { get; set; }
}
}