15 public string?
Name {
get;
internal set; }
25 public string?
Title {
get;
internal set; }
33 public static bool TryParse(Dictionary<string, object> Generic,
38 if (Generic.TryGetValue(
"name", out
object? Obj))
39 Result.Name = Obj as string;
41 if (Generic.TryGetValue(
"title", out Obj))
42 Result.Title = Obj as string;