fin-check-api/db/currency.go

15 lines
169 B
Go
Raw Normal View History

2024-11-20 17:44:23 +01:00
package db
import "gorm.io/gorm"
type Currency struct {
gorm.Model
Name string
ISOName string
Symbol string
}
func (c Currency) GetID() uint {
return c.ID
}