btcpayserver/BTCPayServer.Client/Models/StoreData.cs

11 lines
212 B
C#
Raw Normal View History

2020-03-24 16:18:43 +01:00
namespace BTCPayServer.Client.Models
{
2020-04-30 16:44:27 +02:00
public class StoreData : StoreBaseData
2020-03-24 16:18:43 +01:00
{
/// <summary>
/// the id of the store
/// </summary>
public string Id { get; set; }
}
}