Skip to content

Commit

Permalink
chore: test snapshots (#2165)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaslagoni authored Jan 27, 2025
2 parents 049e9a3 + cefe6c7 commit 137ebf0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ public partial class Root
get { return name; }
set { this.name = value; }
}
public string Serialize()
{
return JsonConvert.SerializeObject(this);
Expand All @@ -39,7 +40,6 @@ public class RootConverter : JsonConverter<Root>
if(jo[\\"email\\"] is null){
throw new JsonSerializationException(\\"Required property 'email' is missing\\");
}
value.Email = jo[\\"email\\"].ToObject<string>(serializer);
if(jo[\\"name\\"] != null) {
Expand Down

0 comments on commit 137ebf0

Please sign in to comment.