perk count + img fixer

This commit is contained in:
Kukks
2019-01-08 15:10:05 +01:00
parent caadfc8641
commit 59fc371cd5
7 changed files with 75 additions and 14 deletions

View File

@@ -32,7 +32,8 @@ namespace BTCPayServer.Models.AppViewModels
public int ResetEveryAmount { get; set; }
public string ResetEvery { get; set; }
public Dictionary<string, int> PerkCount { get; set; }
public class CrowdfundInfo
{
public int TotalContributors { get; set; }
@@ -50,7 +51,7 @@ namespace BTCPayServer.Models.AppViewModels
public bool Started => !StartDate.HasValue || DateTime.Now.ToUniversalTime() > StartDate;
public bool Ended => !EndDate.HasValue || DateTime.Now.ToUniversalTime() > EndDate;
}
public class ContributeToCrowdfund