mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-24 05:27:30 +01:00
Nullify BridgeResponse
This commit is contained in:
@@ -1,7 +1,5 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace Tgstation.Server.Host.Components.Interop.Bridge
|
||||
{
|
||||
/// <summary>
|
||||
@@ -17,11 +15,11 @@ namespace Tgstation.Server.Host.Components.Interop.Bridge
|
||||
/// <summary>
|
||||
/// The <see cref="Bridge.RuntimeInformation"/> for <see cref="BridgeCommandType.Startup"/> requests.
|
||||
/// </summary>
|
||||
public RuntimeInformation RuntimeInformation { get; set; }
|
||||
public RuntimeInformation? RuntimeInformation { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The <see cref="ChunkData.SequenceId"/>s missing from a chunked request.
|
||||
/// </summary>
|
||||
public IReadOnlyCollection<uint> MissingChunks { get; set; }
|
||||
public IReadOnlyCollection<uint>? MissingChunks { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user