mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
16 lines
288 B
C#
16 lines
288 B
C#
namespace BililiveRecorder.Core
|
|
{
|
|
internal enum RestartRecordingReason
|
|
{
|
|
/// <summary>
|
|
/// 普通重试
|
|
/// </summary>
|
|
GenericRetry,
|
|
|
|
/// <summary>
|
|
/// 无对应直播画质
|
|
/// </summary>
|
|
NoMatchingQnValue,
|
|
}
|
|
}
|