fix nostr plugin

This commit is contained in:
Kukks
2023-04-06 10:10:12 +02:00
parent a90b1e7805
commit 2068861bb8
5 changed files with 29 additions and 19 deletions

View File

@@ -3,13 +3,13 @@ using System.ComponentModel.DataAnnotations;
namespace BTCPayServer.Plugins.NIP05
{
}
public class Nip5StoreSettings
{
[Required] public string PubKey { get; set; }
public string? PrivateKey { get; set; }
[Required] public string Name { get; set; }
public class Nip5StoreSettings
{
[Required] public string PubKey { get; set; }
public string PrivateKey { get; set; }
[Required] public string Name { get; set; }
public string[]? Relays { get; set; }
public string[]? Relays { get; set; }
}
}