A helper class with convenient methods for fast de/serialization
To change json property name, change property nick via Description attribure Example: `custom_nick` will be `renamed` in json data. It works for any GLib.Object, not only DataObject
public class ValuesData : DataObject {
[Description (nick="renamed")]
public string custom_nick { get; set; }
}