banboshi_V1/halftoneproject-master/AssistClient/Device/IFLib.cs
2023-10-31 13:19:29 +08:00

22 lines
423 B
C#

using AssistClient.Utils;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Timers;
namespace AssistClient.Device
{
public class IFLib
{
//uuid, Num(1-n)
public Dictionary<long, int> dicData=new Dictionary<long, int>();
public void clear()
{
dicData.Clear();
}
}
}