Nullify BridgeResponse

This commit is contained in:
Jordan Dominion
2023-12-23 09:55:00 -05:00
parent c192bd543b
commit 59306d1cbd
@@ -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; }
}
}