using System; using System.Globalization; using Avalonia.Data.Converters; namespace StabilityMatrix.Avalonia.Converters; public class ComfyUpscalerConverter : IValueConverter { /// public object? Convert(object? value, Type targetType, object? parameter, CultureInfo culture) { throw new NotImplementedException(); } /// public object? ConvertBack( object? value, Type targetType, object? parameter, CultureInfo culture ) { throw new NotImplementedException(); } }