forked from firka/student-legacy
finished sendable message base class gn
This commit is contained in:
parent
f4a6a0ceb0
commit
7b7f603d9c
@ -121,12 +121,22 @@ class SendMessage {
|
|||||||
int lastMessageId;
|
int lastMessageId;
|
||||||
String? subject;
|
String? subject;
|
||||||
String text;
|
String text;
|
||||||
|
DateTime sentDate;
|
||||||
|
String senderRank;
|
||||||
|
String senderName;
|
||||||
|
List<Attachment>? attachments;
|
||||||
|
List<SendRecipient> recipients;
|
||||||
|
|
||||||
SendMessage({
|
SendMessage({
|
||||||
required this.id,
|
required this.id,
|
||||||
required this.lastMessageId,
|
required this.lastMessageId,
|
||||||
this.subject,
|
this.subject,
|
||||||
required this.text,
|
required this.text,
|
||||||
|
required this.sentDate,
|
||||||
|
required this.senderRank,
|
||||||
|
required this.senderName,
|
||||||
|
this.attachments,
|
||||||
|
required this.recipients,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user