Fix topic response deserialization

Fixes #990
This commit is contained in:
Jordan Brown
2020-05-15 13:08:35 -04:00
parent f1003fa3a5
commit eab53573cd
@@ -10,11 +10,11 @@ namespace Tgstation.Server.Host.Components.Interop.Topic
/// <summary>
/// The text to reply with as the result of a <see cref="TopicCommandType.ChatCommand"/> request, if any.
/// </summary>
public string CommandResponseMessage { get; private set; }
public string CommandResponseMessage { get; set; }
/// <summary>
/// The <see cref="ChatMessage"/>s to send as the result of a <see cref="TopicCommandType.EventNotification"/> request, if any.
/// </summary>
public ICollection<ChatMessage> ChatResponses { get; private set; }
public ICollection<ChatMessage> ChatResponses { get; set; }
}
}