This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* An example of serialization. | |
* This example serializes and deserializes only 'x' property. | |
* | |
* vala: 0.36.3 | |
* json-glib: 1.3.2 | |
*/ | |
public class Point : GLib.Object, Json.Serializable { | |
public int x { get; set; } |