16 lines
229 B
Go
16 lines
229 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
|
|
}
|