using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.DataProvider
{
///
/// app参数(可配制)
///
public class AppParas
{
///
/// 访问频率
///
public int Frequency { get; set; }
///
/// 测试文件加名称
///
public string TestDataFolder { get; set; }
///
/// 存储Url
///
public string StoreUrl { get; set; }
///
/// 测点列表
///
public List ObjectIds { get; set; }
}
}