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.

27 lines
541 B

namespace CoreAgent.Domain.Models;
/// <summary>
/// 蜂窝网络状态
/// </summary>
public class CellularNetworkStatus
{
/// <summary>
/// 是否启用
/// </summary>
public bool IsEnabled { get; set; }
/// <summary>
/// 连接状态
/// </summary>
public string ConnectionState { get; set; }
/// <summary>
/// 信号强度
/// </summary>
public int SignalStrength { get; set; }
/// <summary>
/// 运营商名称
/// </summary>
public string CarrierName { get; set; }
}