crypto_alert_bot/internal/entities/alert.go

13 lines
191 B
Go
Raw Normal View History

2026-02-25 22:48:23 +03:00
package entities
import "github.com/shopspring/decimal"
type AlertID string
type Alert struct {
ID AlertID
UserID UserID
Price decimal.Decimal
Instrument Instrument
}