File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 6
6
<Nullable >enable</Nullable >
7
7
<LangVersion >11</LangVersion >
8
8
<GeneratePackageOnBuild >true</GeneratePackageOnBuild >
9
- <PackageVersion >0.0.50 </PackageVersion >
9
+ <PackageVersion >0.0.51 </PackageVersion >
10
10
<Title >Nostr Client</Title >
11
11
<Description >A client for Nostr</Description >
12
12
<Copyright >MIT</Copyright >
Original file line number Diff line number Diff line change @@ -405,6 +405,9 @@ public class PayInvoiceRequest : INIP47Request
405
405
public class PayInvoiceResponse
406
406
{
407
407
[ JsonPropertyName ( "preimage" ) ] public string Preimage { get ; set ; }
408
+ [ JsonIgnore ( Condition = JsonIgnoreCondition . WhenWritingNull ) ]
409
+ [ JsonPropertyName ( "fees_paid" ) ]
410
+ public long ? FeesPaid { get ; set ; }
408
411
}
409
412
410
413
public class MakeInvoiceRequest : INIP47Request
@@ -478,6 +481,8 @@ public class GetInfoResponse
478
481
[ JsonPropertyName ( "block_height" ) ] public long BlockHeight { get ; set ; }
479
482
[ JsonPropertyName ( "block_hash" ) ] public string BlockHash { get ; set ; }
480
483
[ JsonPropertyName ( "methods" ) ] public string [ ] Methods { get ; set ; }
484
+ [ JsonIgnore ( Condition = JsonIgnoreCondition . WhenWritingNull ) ]
485
+ [ JsonPropertyName ( "notifications" ) ] public string [ ] ? Notifications { get ; set ; }
481
486
}
482
487
483
488
public class GetBalanceResponse
You can’t perform that action at this time.
0 commit comments