mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
93781b2a56
(I guess)
17 lines
400 B
C#
17 lines
400 B
C#
using System;
|
|
|
|
namespace BililiveRecorder.Flv.Pipeline.Actions
|
|
{
|
|
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);
|
|
}
|
|
}
|