17 lines
366 B
C#
17 lines
366 B
C#
|
|
using Cowain.Bake.Model.Models;
|
|||
|
|
using Opc.Ua;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace Cowain.Bake.Common.Interface
|
|||
|
|
{
|
|||
|
|
public interface ITrigService
|
|||
|
|
{
|
|||
|
|
void RecvTrigInfo(DataValue data, Variable node); //Variable node string trigInfo, string replyJosn
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|