public string SerializeJSON(IMachineProfile settings)
 {
     return(base.SerializeJSON((TProfile)settings));
 }
 public void ApplyKeyValuePair(IMachineProfile settings, string keyValue)
 {
     base.ApplyKeyValuePair((TProfile)settings, keyValue);
 }
 public void OnSet(IMachineProfile profile)
 {
     base.OnSet((TProfile)profile);
 }
 public Result ApplyJSON(IMachineProfile settings, string json)
 {
     return(base.ApplyJSON((TProfile)settings, json));
 }