|
|
@@ -16,10 +16,10 @@ namespace Discord.Rest |
|
|
|
{ |
|
|
|
private bool _isMentioningEveryone, _isTTS, _isPinned; |
|
|
|
private long? _editedTimestampTicks; |
|
|
|
private ImmutableArray<Attachment> _attachments; |
|
|
|
private ImmutableArray<Embed> _embeds; |
|
|
|
private ImmutableArray<ITag> _tags; |
|
|
|
private ImmutableArray<RestReaction> _reactions; |
|
|
|
private ImmutableArray<Attachment> _attachments = ImmutableArray.Create<Attachment>(); |
|
|
|
private ImmutableArray<Embed> _embeds = ImmutableArray.Create<Embed>(); |
|
|
|
private ImmutableArray<ITag> _tags = ImmutableArray.Create<ITag>(); |
|
|
|
private ImmutableArray<RestReaction> _reactions = ImmutableArray.Create<RestReaction>(); |
|
|
|
|
|
|
|
/// <inheritdoc /> |
|
|
|
public override bool IsTTS => _isTTS; |
|
|
|