Files
2025-08-26 08:37:44 +08:00

21 lines
241 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace SerialDebug
{
public interface ISendForm
{
List<CSendParam> getSendList();
int LoopCount
{
get;
}
}
}