mirror of
https://github.com/aljazceru/BTCPayServerPlugins.git
synced 2025-12-17 07:34:24 +01:00
14 lines
280 B
C#
14 lines
280 B
C#
#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; }
|
|
} |