mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-06 10:32:13 +01:00
12 lines
221 B
C#
12 lines
221 B
C#
|
using System.ComponentModel;
|
||
|
|
||
|
namespace BTCPayServer.Forms;
|
||
|
|
||
|
public class ModifyForm
|
||
|
{
|
||
|
public string Name { get; set; }
|
||
|
|
||
|
[DisplayName("Form configuration (JSON)")]
|
||
|
public string FormConfig { get; set; }
|
||
|
}
|