7 using System.Collections.Generic;
18 public class ListGraphRequest : KineticaData
20 public string graph_name {
get; set; } =
"";
21 public IDictionary<string, string> options {
get; set; } =
new Dictionary<string, string>();
26 public ListGraphRequest() { }
34 public ListGraphRequest(
string graph_name = null,
35 IDictionary<string, string> options = null)
37 this.graph_name = graph_name ??
"";
38 this.options = options ??
new Dictionary<string, string>();
50 public class ListGraphResponse : KineticaData
52 public bool result {
get; set; }
53 public IList<string> graph_names {
get; set; } =
new List<string>();
54 public IList<long> num_nodes {
get; set; } =
new List<long>();
55 public IList<long> num_edges {
get; set; } =
new List<long>();
56 public IDictionary<string, string> info {
get; set; } =
new Dictionary<string, string>();