- namespace PCC.Configuration;
- public class PccDevConfigFile
- {
- public string? MyKeyPrivate { get; set; }
- public string? MyKeyPublic { get; set; }
- public int? ListenPort { get; set; }
- public string? TrustPeerKeyPub { get; set; }
- public string? TrustPeerHost { get; set; }
- public int? TrustPeerPort { get; set; }
- public string? ListenAddress { get; set; }
- }
|