diff --git a/Audit.csproj b/Audit.csproj index 319670a..cdcf799 100644 --- a/Audit.csproj +++ b/Audit.csproj @@ -142,6 +142,7 @@ Designer + diff --git a/Convert/ColorSQLConvert.cs b/Convert/ColorSQLConvert.cs new file mode 100644 index 0000000..daa2e97 --- /dev/null +++ b/Convert/ColorSQLConvert.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Globalization; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Data; + +namespace Audit.ColorSQLConvert +{ + internal class ColorSQLConvert : 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(); + } + } +}