mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 19:57:27 +08:00
18 lines
455 B
C#
18 lines
455 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace BililiveRecorder.Flv.Pipeline
|
||
|
{
|
||
|
public class PipelineDataAction : PipelineAction
|
||
|
{
|
||
|
public PipelineDataAction(IList<Tag> tags)
|
||
|
{
|
||
|
this.Tags = tags ?? throw new ArgumentNullException(nameof(tags));
|
||
|
}
|
||
|
|
||
|
public IList<Tag> Tags { get; set; }
|
||
|
|
||
|
public override PipelineAction Clone() => new PipelineDataAction(new List<Tag>(this.Tags));
|
||
|
}
|
||
|
}
|