GreenField: Add properties to Store API (#1573)

* GreenField: Add properties to Store API

* Update StoreBaseData.cs

* fix api

* fix swagger
This commit is contained in:
Andrew Camilleri
2020-05-23 21:13:18 +02:00
committed by GitHub
parent bfba105aec
commit 79b034b505
20 changed files with 279 additions and 44 deletions

View File

@@ -1,16 +1,10 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using BTCPayServer.Client.Models;
namespace BTCPayServer.Data
{
public enum SpeedPolicy
{
HighSpeed = 0,
MediumSpeed = 1,
LowSpeed = 2,
LowMediumSpeed = 3
}
public class StoreData
{
@@ -48,10 +42,5 @@ namespace BTCPayServer.Data
public IEnumerable<APIKeyData> APIKeys { get; set; }
}
public enum NetworkFeeMode
{
MultiplePaymentsOnly,
Always,
Never
}
}