1 changed files with 66 additions and 0 deletions
@ -0,0 +1,66 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.ComponentModel.DataAnnotations; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace X1.DynamicClientCore.Models |
|||
{ |
|||
/// <summary>
|
|||
/// 蜂窝网络配置实体
|
|||
/// </summary>
|
|||
public class CellularNetworkConfiguration |
|||
{ |
|||
/// <summary>
|
|||
/// 设备代码
|
|||
/// </summary>
|
|||
[Required(ErrorMessage = "设备代码不能为空")] |
|||
public string DeviceCode { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 运行时代码
|
|||
/// </summary>
|
|||
[Required(ErrorMessage = "运行时代码不能为空")] |
|||
public string RuntimeCode { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 无线接入网配置
|
|||
/// </summary>
|
|||
public string RadioAccessNetworkConfiguration { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 核心网IMS配置集合
|
|||
/// </summary>
|
|||
public List<CoreNetworkImsConfiguration> CoreNetworkImsConfigurations { get; set; } = new List<CoreNetworkImsConfiguration>(); |
|||
|
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 核心网IMS配置对象
|
|||
/// </summary>
|
|||
public class CoreNetworkImsConfiguration |
|||
{ |
|||
/// <summary>
|
|||
/// 索引
|
|||
/// </summary>
|
|||
public int Index { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// PLMN标识
|
|||
/// </summary>
|
|||
[Required(ErrorMessage = "PLMN标识不能为空")] |
|||
public string Plmn { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 核心网配置
|
|||
/// </summary>
|
|||
public string CoreNetworkConfiguration { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// IMS服务配置
|
|||
/// </summary>
|
|||
public string ImsServiceConfiguration { get; set; } |
|||
|
|||
} |
|||
} |
Loading…
Reference in new issue