You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

50 lines
1.3 KiB

namespace LTEMvcApp.Models
{
/// <summary>
/// 网络配置响应
/// </summary>
public class NetworkConfigResponse
{
public List<NetworkConfig> Data { get; set; } = new();
public bool IsSuccess { get; set; }
public string Message { get; set; } = string.Empty;
public string ErrorCode { get; set; } = string.Empty;
public int StatusCode { get; set; }
}
/// <summary>
/// 网络配置
/// </summary>
public class NetworkConfig
{
/// <summary>
/// 配置键
/// </summary>
public string ConfigKey { get; set; } = string.Empty;
/// <summary>
/// RAN配置路径
/// </summary>
public string RagConfig { get; set; } = string.Empty;
/// <summary>
/// 核心或IMS配置
/// </summary>
public List<object> CoreOrImsConfigs { get; set; } = new();
/// <summary>
/// APN
/// </summary>
public string Apn { get; set; } = string.Empty;
/// <summary>
/// 频段列表
/// </summary>
public List<string> Band { get; set; } = new();
/// <summary>
/// 注释
/// </summary>
public string Comment { get; set; } = string.Empty;
}
}