9 lines
360 B
C#
9 lines
360 B
C#
using System.Globalization;
|
|
|
|
namespace Jugenddienst_Stunden.Converter;
|
|
|
|
public sealed class EventArgsPassThroughConverter : IValueConverter {
|
|
public object Convert(object value, Type targetType, object parameter, CultureInfo culture) => value;
|
|
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) => value;
|
|
}
|