mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-12-27 04:33:29 +08:00
19 lines
364 B
C#
19 lines
364 B
C#
namespace BililiveRecorder.Core.Config.V2
|
|
{
|
|
public enum CuttingMode : int
|
|
{
|
|
/// <summary>
|
|
/// 禁用
|
|
/// </summary>
|
|
Disabled,
|
|
/// <summary>
|
|
/// 根据时间切割
|
|
/// </summary>
|
|
ByTime,
|
|
/// <summary>
|
|
/// 根据文件大小切割
|
|
/// </summary>
|
|
BySize,
|
|
}
|
|
}
|