2
0
mirror of synced 2025-01-12 17:44:08 +00:00

10 lines
245 B
C#
Raw Normal View History

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