Files
schedtxt_models/pkg/message/scheduling/message.go
T
2025-11-07 12:39:14 -05:00

17 lines
269 B
Go

package scheduling
import (
"time"
"github.com/google/uuid"
)
type ScheduledMessage struct {
Id uuid.UUID `json:"id"`
Scheduled time.Time `json:"scheduled"`
Created time.Time `json:"created"`
Status string `json:"status"`
UserId uuid.UUID `json:"user_id"`
}