Reviewed-on: phoenix/textsender-models#4 Co-authored-by: phoenix <kundeng00@pm.me> Co-committed-by: phoenix <kundeng00@pm.me>
16 lines
286 B
Go
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"`
|
|
}
|