btcpayserver/BTCPayServer/Data/SettingData.cs

21 lines
312 B
C#
Raw Normal View History

2017-09-27 14:18:09 +09:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BTCPayServer.Data
{
public class SettingData
{
public string Id
{
get; set;
}
2017-09-27 14:18:09 +09:00
public string Value
{
get; set;
}
}
2017-09-27 14:18:09 +09:00
}