GreenField: Get Stores

This commit is contained in:
Kukks
2020-03-24 16:18:43 +01:00
parent 2710130667
commit deb197cfa5
5 changed files with 85 additions and 1 deletions

View File

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