using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.WinFrmUI
{
///
/// 信号类型格式参数
///
public interface IFormatParas
{
///
/// 绑定
///
void Set(string value);
///
/// 验证
///
bool Valid();
///
/// 获取
///
string Get();
}
}