cs-codex-dist-tests/Tools/KeyMaker/KeyResponse.cs

10 lines
245 B
C#
Raw Permalink Normal View History

2024-06-19 12:04:27 +00:00
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;
}
}