mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 22:25:28 +01:00
15 lines
211 B
C#
15 lines
211 B
C#
namespace BTCPayServer.Data
|
|
{
|
|
public class SettingData
|
|
{
|
|
public string Id
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
public string Value
|
|
{
|
|
get; set;
|
|
}
|
|
}
|
|
}
|