This commit is contained in:
2026-04-17 07:08:04 +02:00
parent ca91af9682
commit 0d3bd47f7a
34 changed files with 17503 additions and 160 deletions
@@ -0,0 +1,13 @@
namespace TrafagSalesExporter.Models;
public class CurrencyExchangeRate
{
public int Id { get; set; }
public string FromCurrency { get; set; } = string.Empty;
public string ToCurrency { get; set; } = string.Empty;
public decimal Rate { get; set; }
public DateTime ValidFrom { get; set; } = DateTime.UtcNow.Date;
public DateTime? ValidTo { get; set; }
public string Notes { get; set; } = string.Empty;
public bool IsActive { get; set; } = true;
}