14 lines
378 B
C#
14 lines
378 B
C#
using System;
|
|
using Prise.Proxy;
|
|
|
|
namespace PSCHelpdesk.Converter;
|
|
|
|
public class AvaloniaPluginResultConverter : ResultConverter
|
|
{
|
|
public override object Deserialize(Type localType, Type remoteType, object value)
|
|
{
|
|
// No conversion, no backwards compatibility
|
|
// When the host upgrades any Avalonia dependency, it will break
|
|
return value;
|
|
}
|
|
} |