Add GreenfieldAppsController

This commit is contained in:
Umar Bolatov
2022-02-26 21:22:29 -08:00
parent bafec0d974
commit aa3c0346c8
2 changed files with 112 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
namespace BTCPayServer.Client.Models
{
public class CreateAppRequest
{
public string StoreId { get; set; }
public string AppName { get; set; }
public string AppType { get; set; }
}
}