Greenfield: Add update store API (#1495)

* Greenfield: Add update store API

* update update store model

* change greenfield controller name to stop conflict
This commit is contained in:
Andrew Camilleri
2020-04-27 13:13:20 +02:00
committed by GitHub
parent b600e5777e
commit c784144a07
7 changed files with 127 additions and 8 deletions

View File

@@ -1,14 +1,11 @@
namespace BTCPayServer.Client.Models
{
public class StoreData
public class StoreData: StoreBaseData
{
/// <summary>
/// the id of the store
/// </summary>
public string Id { get; set; }
/// <summary>
/// the name of the store
/// </summary>
public string Name { get; set; }
}
}