Skip to content

Commit

Permalink
update snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaslagoni committed Jan 27, 2025
1 parent 049e9a3 commit cefe6c7
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 cefe6c7

Please sign in to comment.