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.

23 lines
475 B

using Newtonsoft.Json;
namespace X1.Domain.Models.LteCellConfiguration
{
/// <summary>
/// PDSCH专用配置实体类
/// </summary>
public class PdschDedicatedConfig
{
/// <summary>
/// P_A参数
/// </summary>
[JsonProperty("p_a")]
public double? PA { get; set; }
/// <summary>
/// P_B参数
/// </summary>
[JsonProperty("p_b")]
public double? PB { get; set; }
}
}