7 using System.Collections.Generic;
12 public class DropModelRequest : KineticaData
14 public string model_name {
get;
set; }
15 public IDictionary<string, string> options {
get;
set; } =
new Dictionary<string, string>();
17 public DropModelRequest() { }
19 public DropModelRequest(
string model_name,
20 IDictionary<string, string> options =
null)
22 this.model_name = model_name ??
"";
23 this.options = options ??
new Dictionary<string, string>();
29 public class DropModelResponse : KineticaData
33 public const string KML_RESPONSE =
"kml_response";
36 public string model_name {
get;
set; }
37 public IDictionary<string, string> info {
get;
set; } =
new Dictionary<string, string>();