You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
352 B
C#
19 lines
352 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace JsonHelper
|
|
{
|
|
internal class Getters
|
|
{
|
|
public string Name;
|
|
public JSON.GenericGetter Getter;
|
|
public Type propertyType;
|
|
}
|
|
|
|
public class DatasetSchema
|
|
{
|
|
public List<string> Info { get; set; }
|
|
public string Name { get; set; }
|
|
}
|
|
}
|