mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-23 04:57:17 +01:00
Nullify BridgeParameters
This commit is contained in:
@@ -4,8 +4,6 @@ using System.Collections.Generic;
|
||||
using Tgstation.Server.Api.Models;
|
||||
using Tgstation.Server.Host.Components.Chat.Commands;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace Tgstation.Server.Host.Components.Interop.Bridge
|
||||
{
|
||||
/// <summary>
|
||||
@@ -26,12 +24,12 @@ namespace Tgstation.Server.Host.Components.Interop.Bridge
|
||||
/// <summary>
|
||||
/// The DMAPI <see cref="global::System.Version"/> for <see cref="BridgeCommandType.Startup"/> requests.
|
||||
/// </summary>
|
||||
public Version Version { get; set; }
|
||||
public Version? Version { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The DMAPI <see cref="CustomCommand"/>s for <see cref="BridgeCommandType.Startup"/> requests.
|
||||
/// </summary>
|
||||
public ICollection<CustomCommand> CustomCommands { get; set; }
|
||||
public ICollection<CustomCommand>? CustomCommands { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The minimum required <see cref="DreamDaemonSecurity"/> level for <see cref="BridgeCommandType.Startup"/> requests.
|
||||
@@ -41,12 +39,12 @@ namespace Tgstation.Server.Host.Components.Interop.Bridge
|
||||
/// <summary>
|
||||
/// The <see cref="Interop.ChatMessage"/> for <see cref="BridgeCommandType.ChatSend"/> requests.
|
||||
/// </summary>
|
||||
public ChatMessage ChatMessage { get; set; }
|
||||
public ChatMessage? ChatMessage { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The <see cref="ChunkData"/> for <see cref="BridgeCommandType.Chunk"/> requests.
|
||||
/// </summary>
|
||||
public ChunkData Chunk { get; set; }
|
||||
public ChunkData? Chunk { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The port that should be used to send world topics, if not the default.
|
||||
|
||||
Reference in New Issue
Block a user