22 lines
632 B
Plaintext
22 lines
632 B
Plaintext
using DTS.Common.Base;
|
|
using System.Windows.Input;
|
|
// ReSharper disable CheckNamespace
|
|
|
|
namespace DTS.Common.Interface
|
|
{
|
|
public interface IAddCalculatedChannelViewModel : IBaseViewModel
|
|
{
|
|
/// <summary>
|
|
/// Gets the Search View.
|
|
/// </summary>
|
|
IBaseView View { get; set; }
|
|
IBaseViewModel Parent { get; set; }
|
|
void PublishChanges();
|
|
bool IncludeGroupNameInISOExport { get; set; }
|
|
|
|
int DefaultDTSEncoding { get; set; }
|
|
ICommand AddCalculatedChannelCommand { get; }
|
|
object ContextSearchRegion { get; set; }
|
|
}
|
|
}
|