Fix prototypes and datadefs so they pass analyzer checks (again) (#37485)

Fix prototypes so they pass analyzer checks (again)
This commit is contained in:
Tayrtahn
2025-05-15 14:30:50 -04:00
committed by GitHub
parent 625115d78a
commit b9337693d3
9 changed files with 16 additions and 16 deletions

View File

@@ -17,7 +17,7 @@ public enum NanoTaskPriority : byte
/// The data relating to a single NanoTask item, but not its identifier
/// </summary>
[Serializable, NetSerializable, DataRecord]
public sealed class NanoTaskItem
public sealed partial class NanoTaskItem
{
/// <summary>
/// The maximum length of the Description and TaskIsFor fields
@@ -61,7 +61,7 @@ public sealed class NanoTaskItem
/// Pairs a NanoTask item and its identifier
/// </summary>
[Serializable, NetSerializable, DataRecord]
public sealed class NanoTaskItemAndId
public sealed partial class NanoTaskItemAndId
{
public readonly int Id;
public readonly NanoTaskItem Data;