mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
15 lines
383 B
C#
15 lines
383 B
C#
namespace BililiveRecorder.Flv.Pipeline
|
|
{
|
|
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());
|
|
}
|
|
}
|