7 using System.Collections.Generic;
18 public class DropModelRequest : KineticaData
20 public string model_name {
get; set; }
21 public IDictionary<string, string> options {
get; set; } =
new Dictionary<string, string>();
26 public DropModelRequest() { }
34 public DropModelRequest(
string model_name,
35 IDictionary<string, string> options = null)
37 this.model_name = model_name ??
"";
38 this.options = options ??
new Dictionary<string, string>();
50 public class DropModelResponse : KineticaData
66 public const string KML_RESPONSE =
"kml_response";
69 public string model_name {
get; set; }
80 public IDictionary<string, string> info {
get; set; } =
new Dictionary<string, string>();