Files
Prowlarr/packages/Exceptron.Driver.0.1.0.17/src/fastJSON/Getters.cs
T
2012-05-06 09:17:55 -07:00

22 lines
435 B
C#

//http://fastjson.codeplex.com/
using System;
using System.Collections.Generic;
using Exceptron.Driver.fastJSON;
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; }
}
}