21 lines
241 B
C#
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;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
}
|