1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-20 21:55:03 -04:00
Files
Radarr/packages/Exceptron.Driver.0.1.0.34/src/fastJSON/Getters.cs
T
2012-06-17 14:55:28 -07:00

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; }
}
}