/// <summary> /// ctor /// </summary> /// <param name="tpe"></param> /// <param name="allMandatory"></param> public JSONLoadableClassAttribute(JSONLoadableType tpe = DefaultLoadable, bool allMandatory = DefaultAllMandatory) { Loadable = tpe; AllMandatory = allMandatory; }
public JSONObjectLoaderImpl() { AllMandatory = JSONLoadableClassAttribute.DefaultAllMandatory; Loadable = JSONLoadableClassAttribute.DefaultLoadable; }