diff --git a/src/Tgstation.Server.Host/Components/Interop/Topic/TopicResponse.cs b/src/Tgstation.Server.Host/Components/Interop/Topic/TopicResponse.cs index bb7d85414c..e0a397fae3 100644 --- a/src/Tgstation.Server.Host/Components/Interop/Topic/TopicResponse.cs +++ b/src/Tgstation.Server.Host/Components/Interop/Topic/TopicResponse.cs @@ -10,11 +10,11 @@ namespace Tgstation.Server.Host.Components.Interop.Topic /// /// The text to reply with as the result of a request, if any. /// - public string CommandResponseMessage { get; private set; } + public string CommandResponseMessage { get; set; } /// /// The s to send as the result of a request, if any. /// - public ICollection ChatResponses { get; private set; } + public ICollection ChatResponses { get; set; } } }