sonarr-repo-only/packages/Exceptron.Driver.0.1.0.34/src/fastJSON/Getters.cs

21 lines
402 B
C#

//http://fastjson.codeplex.com/
using System;
using System.Collections.Generic;
namespace Exceptron.Driver.fastJSON
{
internal class Getters
{
public string Name;
public JSON.GenericGetter Getter;
public Type propertyType;
}
internal class DatasetSchema
{
public List<string> Info { get; set; }
public string Name { get; set; }
}
}