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