mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
* Store selector * Footer * Notifications * Checkout Appearance * Users list * Forms * Emails * Pay Button * Edit Dictionary * Remove newlines, fix typos * Forms * Pull payments and payouts * Various pages * Use local docs link * Fix * Even more translations * Fixes #6325 * Account pages * Notifications * Placeholders * Various pages and components * Add more
15 lines
328 B
C#
15 lines
328 B
C#
using System.ComponentModel;
|
|
|
|
namespace BTCPayServer.Forms;
|
|
|
|
public class ModifyForm
|
|
{
|
|
[DisplayName("Name")]
|
|
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; }
|
|
}
|