mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 19:57:27 +08:00
93781b2a56
(I guess)
15 lines
391 B
C#
15 lines
391 B
C#
namespace BililiveRecorder.Flv.Pipeline.Actions
|
|
{
|
|
public class PipelineEndAction : PipelineAction
|
|
{
|
|
public Tag Tag { get; set; }
|
|
|
|
public PipelineEndAction(Tag tag)
|
|
{
|
|
this.Tag = tag ?? throw new System.ArgumentNullException(nameof(tag));
|
|
}
|
|
|
|
public override PipelineAction Clone() => new PipelineEndAction(this.Tag.Clone());
|
|
}
|
|
}
|