using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Newtonsoft.Json.Serialization
{
///
/// Contract details for a used by the .
///
public class JsonLinqContract : JsonContract
{
///
/// Initializes a new instance of the class.
///
/// The underlying type for the contract.
public JsonLinqContract(Type underlyingType)
: base(underlyingType)
{
}
}
}