Closes #8 Reviewed-on: phoenix/textsender-models#9 Co-authored-by: phoenix <kundeng00@pm.me> Co-committed-by: phoenix <kundeng00@pm.me>
12 lines
192 B
Go
12 lines
192 B
Go
package message
|
|
|
|
import (
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
type Message struct {
|
|
Id uuid.UUID `json:"id"`
|
|
Content string `json:"content,omitempty"`
|
|
UserId uuid.UUID `json:"user_id"`
|
|
}
|