mirror of
https://github.com/bitwarden/android.git
synced 2026-03-26 08:12:00 -05:00
9 lines
171 B
C#
9 lines
171 B
C#
namespace Bit.App.Models.Api
|
|
{
|
|
public class KeysResponse
|
|
{
|
|
public string PublicKey { get; set; }
|
|
public string PrivateKey { get; set; }
|
|
}
|
|
}
|