2
0
mirror of synced 2025-02-05 13:15:10 +00:00

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;
}
}