mirror of
https://github.com/leiurayer/downkyi.git
synced 2025-03-24 08:10:11 +08:00
12 lines
196 B
C#
12 lines
196 B
C#
using System;
|
|
|
|
namespace DownKyi.Core.BiliApi.BiliUtils
|
|
{
|
|
[Serializable]
|
|
public class Quality
|
|
{
|
|
public string Name { get; set; }
|
|
public int Id { get; set; }
|
|
}
|
|
}
|