using System;
namespace DPumpHydr.WinFrmUI.WenSkin.Json.Serialization
{
///
/// Contract details for a used by the .
///
public class JsonStringContract : JsonPrimitiveContract
{
///
/// Initializes a new instance of the class.
///
/// The underlying type for the contract.
public JsonStringContract(Type underlyingType)
: base(underlyingType)
{
ContractType = JsonContractType.String;
}
}
}