13 lines
251 B
Plaintext
13 lines
251 B
Plaintext
|
|
using System.Collections.Generic;
|
||
|
|
using DTS.Common.Base;
|
||
|
|
using DTS.Common.Utils;
|
||
|
|
|
||
|
|
namespace DTS.Common.Interface
|
||
|
|
{
|
||
|
|
public interface ILevelTriggerViewModel : IBaseViewModel
|
||
|
|
{
|
||
|
|
ILevelTriggerView View { get; set; }
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|