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 }