mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-19 05:33:31 +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; }
|
|
}
|