mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-02 21:43:08 +00:00
10 lines
245 B
C#
10 lines
245 B
C#
namespace KeyMaker
|
|
{
|
|
public class KeyResponse
|
|
{
|
|
public string Public { get; set; } = string.Empty;
|
|
public string Private { get; set; } = string.Empty;
|
|
public string Secure { get; set; } = string.Empty;
|
|
}
|
|
}
|