Skip to content

Commit dac88a3

Browse files
committed
Add Serializable attribute to suppress CI complaint
Add `Serializable` attribute to suppress CI complaint
1 parent fb821f8 commit dac88a3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

osu.Server.Queues.ScoreStatisticsProcessor/Commands/Score/ChangeModMultiplierCommand.cs

+3-2
Original file line numberDiff line numberDiff line change
@@ -154,10 +154,11 @@ private void flush(MySqlConnection conn, bool force = false)
154154
}
155155

156156
[SuppressMessage("ReSharper", "InconsistentNaming")]
157+
[Serializable]
157158
private class ScoreToAdjust
158159
{
159-
public ulong id;
160-
public uint total_score;
160+
public ulong id { get; set; }
161+
public uint total_score { get; set; }
161162
}
162163
}
163164
}

0 commit comments

Comments
 (0)