mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-06 10:32:13 +01:00
13 lines
314 B
C#
13 lines
314 B
C#
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
using Microsoft.EntityFrameworkCore;
|
||
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
||
|
|
||
|
namespace BTCPayServer.Data.Data;
|
||
|
|
||
|
public class FormData
|
||
|
{
|
||
|
public string Id { get; set; }
|
||
|
public string Name { get; set; }
|
||
|
public string Config { get; set; }
|
||
|
}
|