1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-06-30 11:14:51 +02:00
bitwarden-mobile/src/Core/Models/Response/OrganizationKeysResponse.cs
2022-04-26 17:21:17 +02:00

9 lines
189 B
C#

namespace Bit.Core.Models.Response
{
public class OrganizationKeysResponse
{
public string PrivateKey { get; set; }
public string PublicKey { get; set; }
}
}