Files
DP44/Common/DTS.CommonCore/.svn/pristine/81/81ada3423919c8c80c28be52bdc6341865e5658a.svn-base

13 lines
251 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
using System.Collections.Generic;
using DTS.Common.Base;
using DTS.Common.Utils;
namespace DTS.Common.Interface
{
public interface ILevelTriggerViewModel : IBaseViewModel
{
ILevelTriggerView View { get; set; }
}
}