Files
YunTongJackYunTask/Reportapi/MyCode.Project.Services/IServices/IWebSocketService.cs
2025-07-04 09:50:02 +08:00

18 lines
298 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Services
{
public interface IWebSocketService
{
/// <summary>
/// 初始化
/// </summary>
void Init();
}
}