btcpayserver/BTCPayServer.Client/Models/StoreData.cs
Andrew Camilleri c784144a07
Greenfield: Add update store API (#1495)
* Greenfield: Add update store API

* update update store model

* change greenfield controller name to stop conflict
2020-04-27 20:13:20 +09: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; }
}
}