mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
19 lines
361 B
C#
19 lines
361 B
C#
namespace BililiveRecorder.Core.Config
|
|
{
|
|
public enum CuttingMode : int
|
|
{
|
|
/// <summary>
|
|
/// 禁用
|
|
/// </summary>
|
|
Disabled,
|
|
/// <summary>
|
|
/// 根据时间切割
|
|
/// </summary>
|
|
ByTime,
|
|
/// <summary>
|
|
/// 根据文件大小切割
|
|
/// </summary>
|
|
BySize,
|
|
}
|
|
}
|