13 lines
191 B
Go
13 lines
191 B
Go
|
|
package entities
|
||
|
|
|
||
|
|
import "github.com/shopspring/decimal"
|
||
|
|
|
||
|
|
type AlertID string
|
||
|
|
|
||
|
|
type Alert struct {
|
||
|
|
ID AlertID
|
||
|
|
UserID UserID
|
||
|
|
Price decimal.Decimal
|
||
|
|
Instrument Instrument
|
||
|
|
}
|