ln.json.http/HttpObjectMapper.cs

23 lines
448 B
C#

using System;
using ln.http;
using System.Collections;
using System.Collections.Generic;
namespace ln.json.http
{
public class HttpObjectMapper
{
public Type NativeType { get; }
public HttpObjectMapper(Type nativeType)
{
NativeType = nativeType;
}
public HttpResponse Request(ObjectRequest objectRequest)
{
throw new NotImplementedException();
}
}
}