JsonStringContract
                
                
                
using System;
using System.
Runtime.
CompilerServices;
namespace Newtonsoft.
Json.
Serialization
{
    
public class JsonStringContract : 
JsonPrimitiveContract
    {
        [
System.
Runtime.
CompilerServices.
NullableContext(
1)]
        
public JsonStringContract(
Type underlyingType)
            : 
base(
underlyingType)
        {
            
ContractType = 
JsonContractType.
String;
        }
    }
}