1 namespace KeyMaker 2 { 3 public class KeyResponse 4 { 5 public string Public { get; set; } = string.Empty; 6 public string Private { get; set; } = string.Empty; 7 public string Secure { get; set; } = string.Empty; 8 } 9 }