using System;
namespace DPumpHydr.WinFrmUI.WenSkin.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)
{
ContractType = JsonContractType.Linq;
}
}
}