Files
schedtxt_models/pkg/message/scheduling/message.go
T
2025-11-09 12:28:08 -05:00

16 lines
286 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"`
}