18 lines
523 B
Plaintext
18 lines
523 B
Plaintext
|
|
using DTS.Common.Base;
|
||
|
|
using DTS.Common.Enums;
|
||
|
|
|
||
|
|
namespace DTS.Common.Interface
|
||
|
|
{
|
||
|
|
public interface IISOSettingsData : IBaseClass
|
||
|
|
{
|
||
|
|
bool UniqueISOCodesRequired { get; set; }
|
||
|
|
IsoViewMode ISOViewMode {get;set;}
|
||
|
|
bool ShowISOStringBuilder { get; set; }
|
||
|
|
bool ShowChannelCodeLookupHelper { get; set; }
|
||
|
|
bool UseISOCodeFilterMapping { get; set; }
|
||
|
|
bool ShowISOCodes { get; }
|
||
|
|
bool ShowUserCodes { get; }
|
||
|
|
bool ChannelNamesOnly { get; }
|
||
|
|
}
|
||
|
|
}
|