Files
Govor/Govor.Contracts/Requests/UploadKeysRequest.cs
T
2025-07-30 12:41:57 +07:00

7 lines
172 B
C#

namespace Govor.Contracts.Requests;
public class UploadKeysRequest
{
public string PublicEncryptionKey { get; set; }
public string PublicSigningKey { get; set; }
}