mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-06 18:41:12 +01:00
14 lines
340 B
C#
14 lines
340 B
C#
|
using BTCPayServer.Abstractions.Form;
|
||
|
using BTCPayServer.Data.Data;
|
||
|
using Newtonsoft.Json.Linq;
|
||
|
|
||
|
namespace BTCPayServer.Forms.Models;
|
||
|
|
||
|
public class FormViewModel
|
||
|
{
|
||
|
public string RedirectUrl { get; set; }
|
||
|
public FormData FormData { get; set; }
|
||
|
Form _Form;
|
||
|
public Form Form { get => _Form ??= Form.Parse(FormData.Config); }
|
||
|
}
|