16 lines
226 B
Go
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
|
|
}
|