Add currency inflation admin page.

This commit is contained in:
2020-08-07 20:00:38 +01:00
parent 8c2b355646
commit 43e1c282b9
15 changed files with 883 additions and 4 deletions

View File

@@ -31,7 +31,8 @@ namespace Marechai.Database.Models
{
[Required]
public virtual Iso4217 Currency { get; set; }
public uint Year { get; set; }
public float Inflation { get; set; }
public uint Year { get; set; }
public float Inflation { get; set; }
public string CurrencyCode { get; set; }
}
}