18 lines
368 B
C#
18 lines
368 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using CommonEntity.RCUEntity;
|
|
|
|
namespace IOT_JieKou
|
|
{
|
|
/// <summary>
|
|
/// 根据IP和端口来 区分
|
|
/// </summary>
|
|
public interface IDataTran:IGrainWithStringKey
|
|
{
|
|
ValueTask TongXin(RCU_UDPData_With_String data);
|
|
}
|
|
}
|