Skip to content

Commit

Permalink
renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
Atralupus committed Mar 6, 2024
1 parent 758282a commit 3c55f92
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion NineChroniclesUtilBackend.Store/Models/State/BaseData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public class BaseData
{
protected static JsonSerializerSettings JsonSerializerSettings => new JsonSerializerSettings
{
Converters = { new IStateJsonConverter() },
Converters = { new StateJsonConverter() },
Formatting = Formatting.Indented,
NullValueHandling = NullValueHandling.Ignore
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

namespace NineChroniclesUtilBackend.Store.Util;

public class IStateJsonConverter : JsonConverter
public class StateJsonConverter : JsonConverter
{
public override bool CanConvert(Type objectType)
{
Expand Down

0 comments on commit 3c55f92

Please sign in to comment.