btcpayserver/BTCPayServer/Forms/ModifyForm.cs
2023-04-10 11:07:03 +09:00

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; }
}