btcpayserver/BTCPayServer.Client/Models/StoreData.cs
2020-04-30 16:44:27 +02:00

11 lines
212 B
C#

namespace BTCPayServer.Client.Models
{
public class StoreData : StoreBaseData
{
/// <summary>
/// the id of the store
/// </summary>
public string Id { get; set; }
}
}