mirror of https://github.com/leiurayer/downkyi
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.
19 lines
416 B
19 lines
416 B
using System.Collections.Generic;
|
|
|
|
namespace DownKyi.Core.BiliApi.BiliUtils
|
|
{
|
|
public static class Constant
|
|
{
|
|
/// <summary>
|
|
/// 音质id及含义
|
|
/// </summary>
|
|
public static Dictionary<int, string> AudioQuality { get; } = new Dictionary<int, string>()
|
|
{
|
|
{ 30216, "64K" },
|
|
{ 30232, "132K" },
|
|
{ 30280, "192K" }
|
|
};
|
|
|
|
}
|
|
}
|