mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
17 lines
392 B
C#
17 lines
392 B
C#
using System;
|
|
|
|
namespace BililiveRecorder.Flv.Pipeline
|
|
{
|
|
public class PipelineScriptAction : PipelineAction
|
|
{
|
|
public PipelineScriptAction(Tag tag)
|
|
{
|
|
this.Tag = tag ?? throw new ArgumentNullException(nameof(tag));
|
|
}
|
|
|
|
public Tag Tag { get; set; }
|
|
|
|
public override PipelineAction Clone() => new PipelineScriptAction(this.Tag);
|
|
}
|
|
}
|