PccConfigFile.cs 389 B

1234567891011121314
  1. namespace PCC.App.Configuration;
  2. public class PccConfigFile
  3. {
  4. public string? MyKeyPrivate { get; set; }
  5. public string? MyKeyPublic { get; set; }
  6. public int? ListenPort { get; set; }
  7. public string? TrustPeerKeyPub { get; set; }
  8. public string? TrustPeerHost { get; set; }
  9. public int? TrustPeerPort { get; set; }
  10. public string? ListenAddress { get; set; }
  11. }