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