This commit is contained in:
2026-04-17 14:55:32 -04:00
commit bc3ac1d4c9
18017 changed files with 4371742 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Input;
using DTS.Common.Enums;
namespace DTS.Common.Interface.ISO.ExtraProperties
{
public interface IExtraProperty : INotifyPropertyChanged
{
/// <summary>
/// key/name of the property
/// </summary>
string Key { get; set; }
/// <summary>
/// value associated with property
/// </summary>
string Value { get; set; }
/// <summary>
/// handler for paste command
/// this is used for when data is pasted into either a key or value
/// it's needed because you can paste many rows, a CSV for example, into one field
/// </summary>
ICommand PasteCommand { get; set; }
/// <summary>
/// the status of the item in the UI
/// (failed/success/etc)
/// </summary>
UIItemStatus ItemStatus { get; set; }
}
}

View File

@@ -0,0 +1,14 @@
using System.Windows.Input;
using DTS.Common.Base;
namespace DTS.Common.Interface
{
public interface ITestDataViewModel : IBaseViewModel
{
/// <summary>
/// Gets the Tab View.
/// </summary>
ITestDataView View { get; set; }
ITestDataSeries Model { get; set; }
}
}

View File

@@ -0,0 +1,13 @@
using System.ComponentModel;
using DTS.Common.Converters;
namespace DTS.Common.Enums
{
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
public enum StringReplacementMode
{
All,
First,
Last
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB