finished sendable message base class gn

This commit is contained in:
Kima 2023-12-10 22:47:25 +01:00
parent f4a6a0ceb0
commit 7b7f603d9c

View File

@ -121,12 +121,22 @@ class SendMessage {
int lastMessageId;
String? subject;
String text;
DateTime sentDate;
String senderRank;
String senderName;
List<Attachment>? attachments;
List<SendRecipient> recipients;
SendMessage({
required this.id,
required this.lastMessageId,
this.subject,
required this.text,
required this.sentDate,
required this.senderRank,
required this.senderName,
this.attachments,
required this.recipients,
});
}