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