18 lines
234 B
Go
18 lines
234 B
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Message struct {
|
|
ID int
|
|
SenderId int
|
|
RecipientId int
|
|
Subject string
|
|
Body string
|
|
IsRead bool
|
|
IsArchived bool
|
|
CreatedAt time.Time
|
|
ArchivedAt *time.Time
|
|
}
|