mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
15 lines
302 B
C#
15 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; }
|
|
}
|