using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CoreAgent.ProtocolClient.Models
{
///
/// LTE协议能力信息模型
/// 用于存储用户设备(UE)的LTE协议栈能力信息,包括频段支持、UE类别等
///
public class ProtocolCaps
{
///
/// 用户设备唯一标识符
///
public int UeId { get; set; }
///
/// 支持的LTE频段列表
///
public List Bands { get; set; } = new List();
///
/// UE类别(可选)
///
public int? Category { get; set; }
///
/// 下行UE类别(可选)
///
public int? CategoryDl { get; set; }
///
/// 上行UE类别(可选)
///
public int? CategoryUl { get; set; }
///
/// 协议能力数据列表
///
public List