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.

22 lines
409 B

namespace CoreAgent.Domain.Models;
/// <summary>
/// 蜂窝网络配置
/// </summary>
public class CellularNetworkConfig
{
/// <summary>
/// APN名称
/// </summary>
public string Apn { get; set; }
/// <summary>
/// 用户名
/// </summary>
public string Username { get; set; }
/// <summary>
/// 密码
/// </summary>
public string Password { get; set; }
}