7 using System.Collections.Generic;
12 public class ListGraphRequest : KineticaData
14 public string graph_name {
get;
set; } =
"";
15 public IDictionary<string, string> options {
get;
set; } =
new Dictionary<string, string>();
17 public ListGraphRequest() { }
19 public ListGraphRequest(
string graph_name =
null,
20 IDictionary<string, string> options =
null)
22 this.graph_name = graph_name ??
"";
23 this.options = options ??
new Dictionary<string, string>();
29 public class ListGraphResponse : KineticaData
31 public bool result {
get;
set; }
32 public IList<string> graph_names {
get;
set; } =
new List<string>();
33 public IList<long> num_nodes {
get;
set; } =
new List<long>();
34 public IList<long> num_edges {
get;
set; } =
new List<long>();
35 public IDictionary<string, string> info {
get;
set; } =
new Dictionary<string, string>();