Skip to content

Commit

Permalink
Add Serializable attribute to suppress CI complaint
Browse files Browse the repository at this point in the history
Add `Serializable` attribute to suppress CI complaint
  • Loading branch information
peppy committed Apr 11, 2024
1 parent fb821f8 commit dac88a3
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,11 @@ private void flush(MySqlConnection conn, bool force = false)
}

[SuppressMessage("ReSharper", "InconsistentNaming")]
[Serializable]
private class ScoreToAdjust
{
public ulong id;
public uint total_score;
public ulong id { get; set; }
public uint total_score { get; set; }
}
}
}

0 comments on commit dac88a3

Please sign in to comment.