mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 11:42:22 +08:00
14 lines
290 B
C#
14 lines
290 B
C#
namespace BililiveRecorder.Flv.Pipeline.Actions
|
|
{
|
|
public abstract class PipelineAction
|
|
{
|
|
protected PipelineAction()
|
|
{
|
|
this.Name = this.GetType().Name;
|
|
}
|
|
|
|
public string Name { get; }
|
|
public abstract PipelineAction Clone();
|
|
}
|
|
}
|