nostr plugin

This commit is contained in:
Kukks
2023-02-09 16:06:25 +01:00
parent 8937565a5d
commit 90c827a3eb
10 changed files with 421 additions and 10 deletions

View File

@@ -0,0 +1,14 @@
#nullable enable
using System.ComponentModel.DataAnnotations;
namespace BTCPayServer.Plugins.NIP05
{
}
public class Nip5StoreSettings
{
[Required] public string PubKey { get; set; }
[Required] public string Name { get; set; }
public string[]? Relays { get; set; }
}