Major refactor and cleanup.

This commit is contained in:
2025-11-13 04:05:35 +00:00
parent 1d67081792
commit 8f6d334af4
833 changed files with 86800 additions and 74355 deletions

View File

@@ -25,14 +25,13 @@
using System.ComponentModel.DataAnnotations;
namespace Marechai.Database.Models
namespace Marechai.Database.Models;
public class CurrencyInflation : BaseModel<int>
{
public class CurrencyInflation : BaseModel<int>
{
[Required]
public virtual Iso4217 Currency { get; set; }
public uint Year { get; set; }
public float Inflation { get; set; }
public string CurrencyCode { get; set; }
}
[Required]
public virtual Iso4217 Currency { get; set; }
public uint Year { get; set; }
public float Inflation { get; set; }
public string CurrencyCode { get; set; }
}