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