tgstation-server  4.3.2
The /tg/station 13 server suite
CombinedTopicResponse.cs
Go to the documentation of this file.
1 using System;
3 
4 namespace Tgstation.Server.Host.Components.Session
5 {
9  sealed class CombinedTopicResponse
10  {
14  public global::Byond.TopicSender.TopicResponse ByondTopicResponse { get; }
15 
19  public TopicResponse InteropResponse { get; }
20 
26  public CombinedTopicResponse(global::Byond.TopicSender.TopicResponse byondTopicResponse, TopicResponse interopResponse)
27  {
28  ByondTopicResponse = byondTopicResponse ?? throw new ArgumentNullException(nameof(byondTopicResponse));
29  InteropResponse = interopResponse;
30  }
31  }
32 }
CombinedTopicResponse(global::Byond.TopicSender.TopicResponse byondTopicResponse, TopicResponse interopResponse)
Initializes a new instance of the CombinedTopicResponse .
Combines a global::Byond.TopicSender.TopicResponse with a TopicResponse.