tgstation-server 6.12.0
The /tg/station 13 server suite
Loading...
Searching...
No Matches
CombinedTopicResponse.cs
Go to the documentation of this file.
1using System;
2
4
6{
11 {
15 public Byond.TopicSender.TopicResponse ByondTopicResponse { get; }
16
21
27 public CombinedTopicResponse(Byond.TopicSender.TopicResponse byondTopicResponse, TopicResponse? interopResponse)
28 {
29 ByondTopicResponse = byondTopicResponse ?? throw new ArgumentNullException(nameof(byondTopicResponse));
30 InteropResponse = interopResponse;
31 }
32 }
33}
Combines a Byond.TopicSender.TopicResponse with a TopicResponse.
Byond.TopicSender.TopicResponse ByondTopicResponse
The raw Byond.TopicSender.TopicResponse.
TopicResponse? InteropResponse
The interop TopicResponse, if any.
CombinedTopicResponse(Byond.TopicSender.TopicResponse byondTopicResponse, TopicResponse? interopResponse)
Initializes a new instance of the CombinedTopicResponse class.