18 lines
579 B
C#
18 lines
579 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Data;
|
|
|
|
namespace StructureHelper.Infrastructure.UI.Converters.Units
|
|
{
|
|
internal abstract class UnitBase : IValueConverter
|
|
{
|
|
public abstract string unitName { get;}
|
|
public abstract object Convert(object value, Type targetType, object parameter, CultureInfo culture);
|
|
public abstract object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture);
|
|
}
|
|
}
|