This commit is contained in:
2026-02-11 17:46:22 +03:00
commit eacfacb13b
266 changed files with 51337 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
package models
// TodayCurrencyV3 sistemdeki döviz kurlarını temsil eder
type TodayCurrencyV3 struct {
CurrencyCode string `json:"currencyCode"`
RelationCurrencyCode string `json:"relationCurrencyCode"`
ExchangeTypeCode int `json:"exchangeTypeCode"`
Rate float64 `json:"rate"`
Date string `json:"date"`
}