Files
aitrade/pkg/model/whitelist.go
T
kaedwen ea141eb012
Build and Push Docker Image / build-and-push (push) Failing after 1m41s
initial
2026-07-02 20:09:44 +02:00

16 lines
226 B
Go

package model
import "time"
type WhitelistEntry struct {
ID int64
Symbol string
Name string
WKN string
ISIN string
Enabled bool
CreatedAt time.Time
UpdatedAt time.Time
Notes string
}