Files
bssapp/svc/models/todaycurrencyv3.go
2026-02-11 17:46:22 +03:00

11 lines
365 B
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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"`
}