using System.Collections.Generic;
namespace DownKyi.Core.BiliApi.BiliUtils
{
public static class Constant
{
///
/// 音质id及含义
///
public static Dictionary AudioQuality { get; } = new Dictionary()
{
{ 30216, "64K" },
{ 30232, "132K" },
{ 30280, "192K" }
};
}
}