runtime.csharp.IRT.Marshaller.Marshaller.cs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of idealingua-v1-runtime-rpc-c-sharp_2.13 Show documentation
Show all versions of idealingua-v1-runtime-rpc-c-sharp_2.13 Show documentation
idealingua-v1-runtime-rpc-c-sharp
The newest version!
namespace IRT.Marshaller {
public interface IMarshaller {
T Marshal(I data);
O Unmarshal(T data);
}
public interface IJsonMarshaller: IMarshaller {
}
public interface IBinaryMarshaller: IMarshaller {
}
}