Moving CrowdfundSettings in its own file

This commit is contained in:
nicolas.dorier
2019-02-19 13:07:10 +09:00
parent aedad497e8
commit 50c8525012
4 changed files with 49 additions and 42 deletions

View File

@@ -2,6 +2,7 @@
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using BTCPayServer.Services.Apps;
namespace BTCPayServer.Models.AppViewModels
{
@@ -81,13 +82,4 @@ namespace BTCPayServer.Models.AppViewModels
[Display(Name = "Display contribution ranking")]
public bool DisplayPerksRanking { get; set; }
}
public enum CrowdfundResetEvery
{
Never,
Hour,
Day,
Month,
Year
}
}