mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 22:25:28 +01:00
14 lines
302 B
C#
14 lines
302 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; }
|
|
|
|
[DisplayName("Allow form for public use")]
|
|
public bool Public { get; set; }
|
|
}
|