mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-12-27 04:33:29 +08:00
15 lines
384 B
C#
15 lines
384 B
C#
|
namespace BililiveRecorder.Flv.Pipeline
|
||
|
{
|
||
|
public class PipelineEndAction : PipelineAction
|
||
|
{
|
||
|
private 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());
|
||
|
}
|
||
|
}
|