Files
herolib/lib/servers/mail/mailbox/message.v
2025-02-16 09:30:51 +03:00

15 lines
308 B
V

module mailbox
import time
// Represents an email message.
@[heap]
pub struct Message {
pub mut:
uid u32 // Unique identifier for the message
subject string
body string
flags []string // e.g.: ["\\Seen", "\\Flagged"]
internal_date time.Time // Message arrival time
}