pschelpdesk/Vendor/Prise.Proxy/PassthroughResultConverter.cs
2024-11-04 20:45:34 +01:00

12 lines
250 B
C#

using System;
namespace Prise.Proxy
{
public class PassthroughResultConverter : ResultConverter
{
public override object Deserialize(Type localType, Type remoteType, object value)
{
return value;
}
}
}