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.
35 lines
797 B
35 lines
797 B
using Newtonsoft.Json;
|
|
|
|
namespace X1.Domain.Models.LteCellConfiguration
|
|
{
|
|
/// <summary>
|
|
/// PLMN配置实体类
|
|
/// </summary>
|
|
public class PlmnConfig
|
|
{
|
|
/// <summary>
|
|
/// PLMN标识
|
|
/// </summary>
|
|
[JsonProperty("plmn")]
|
|
public string? Plmn { get; set; }
|
|
|
|
/// <summary>
|
|
/// 保留标志
|
|
/// </summary>
|
|
[JsonProperty("reserved")]
|
|
public bool? Reserved { get; set; }
|
|
|
|
/// <summary>
|
|
/// CP CIoT选项
|
|
/// </summary>
|
|
[JsonProperty("cp_ciot_opt")]
|
|
public bool? CpCiotOpt { get; set; }
|
|
|
|
/// <summary>
|
|
/// 无PDN附着
|
|
/// </summary>
|
|
[JsonProperty("attach_without_pdn")]
|
|
public bool? AttachWithoutPdn { get; set; }
|
|
}
|
|
}
|
|
|
|
|