using System.Collections.Generic;
namespace LTEMvcApp.Models
{
///
/// 统计配置模型
///
public class StatisticsConfig
{
///
/// 客户端IP地址
///
public string IpAddress { get; set; } = string.Empty;
///
/// 客户端名称
///
public string ClientName { get; set; } = string.Empty;
///
/// 是否启用samples参数
///
public bool EnableSamples { get; set; } = false;
///
/// 是否启用rf参数
///
public bool EnableRf { get; set; } = false;
///
/// 是否启用此配置
///
public bool IsEnabled { get; set; } = true;
///
/// 描述信息
///
public string Description { get; set; } = string.Empty;
}
///
/// 全局统计配置
///
public class GlobalStatisticsConfig
{
///
/// 默认samples值
///
public bool DefaultSamples { get; set; } = false;
///
/// 默认rf值
///
public bool DefaultRf { get; set; } = false;
///
/// 客户端特定配置
///
public List ClientConfigs { get; set; } = new List();
}
}