Skip to content

Commit

Permalink
Make converters public
Browse files Browse the repository at this point in the history
  • Loading branch information
jzebedee committed Oct 5, 2019
1 parent 738b39d commit 52e9294
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Chronicler/Converters/ChronicleChapterConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

namespace Chronicler.Converters
{
internal class ChronicleChapterConverter : JsonConverter<ChronicleChapter>
public class ChronicleChapterConverter : JsonConverter<ChronicleChapter>
{
public override ChronicleChapter Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Chronicler/Converters/ChronicleCollectionConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

namespace Chronicler.Converters
{
internal class ChronicleCollectionConverter : JsonConverter<ChronicleCollection>
public class ChronicleCollectionConverter : JsonConverter<ChronicleCollection>
{
public override ChronicleCollection Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Chronicler/Converters/ChronicleConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

namespace Chronicler.Converters
{
internal class ChronicleConverter : JsonConverter<Chronicle>
public class ChronicleConverter : JsonConverter<Chronicle>
{
public override Chronicle Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
{
Expand Down

0 comments on commit 52e9294

Please sign in to comment.