Files
DP44/Common/DTS.CommonCore/.svn/pristine/90/90620af99203901cb2667e8a36f55f3a812ad865.svn-base
2026-04-17 14:55:32 -04:00

17 lines
481 B
Plaintext

using System.ComponentModel;
namespace DTS.Common.Interface.RegionOfInterest
{
public interface IRegionOfInterest : INotifyPropertyChanged
{
string Suffix { get; set; }
double Start { get; set; }
double End { get; set; }
bool IsEnabled { get; set; }
bool IsDefault { get; set; }
string[] ChannelNames { get; set; }
void SetChannelNamesNoNotify(string[] names);
void ResetSuffix();
}
}