mirror of
https://github.com/diamondburned/cchat-gtk.git
synced 2024-11-16 11:12:44 +00:00
12 lines
389 B
Go
12 lines
389 B
Go
package cozy
|
|
|
|
// CompactMessage is a message that follows after FullMessage. It does not show
|
|
// the header, and the avatar is invisible.
|
|
type CompactMessage struct {
|
|
// Essentially, CompactMessage is just a full message with some things
|
|
// hidden. Its Avatar and Timestamp will still be updated. This is a
|
|
// trade-off between performance, efficiency and code length.
|
|
|
|
*FullMessage
|
|
}
|