mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 19:57:27 +08:00
13 lines
298 B
C#
13 lines
298 B
C#
using System.Collections.Generic;
|
|
using BililiveRecorder.Flv.Pipeline;
|
|
|
|
namespace BililiveRecorder.Flv
|
|
{
|
|
public interface IGroupingRule
|
|
{
|
|
bool StartWith(Tag tag);
|
|
bool AppendWith(Tag tag, List<Tag> tags);
|
|
PipelineAction CreatePipelineAction(List<Tag> tags);
|
|
}
|
|
}
|