Added ScheduledMessage

This commit is contained in:
phoenix
2025-11-07 12:39:14 -05:00
parent 2bb52371c8
commit c3386b1888
2 changed files with 25 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
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"`
}