Nullify ChunkedTopicParameters

This commit is contained in:
Jordan Dominion
2023-12-23 10:07:39 -05:00
parent d663b97aed
commit 7747df9afd
@@ -1,7 +1,5 @@
using System.Collections.Generic;
#nullable disable
namespace Tgstation.Server.Host.Components.Interop.Topic
{
/// <summary>
@@ -10,7 +8,7 @@ namespace Tgstation.Server.Host.Components.Interop.Topic
sealed class ChunkedTopicParameters : TopicParameters, IMissingPayloadsCommunication, IChunkPayloadId
{
/// <inheritdoc />
public IReadOnlyCollection<uint> MissingChunks { get; set; }
public IReadOnlyCollection<uint>? MissingChunks { get; set; }
/// <inheritdoc />
public uint? PayloadId { get; set; }