mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
93781b2a56
(I guess)
18 lines
479 B
C#
18 lines
479 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace BililiveRecorder.Flv.Pipeline.Actions
|
|
{
|
|
public class PipelineDataAction : PipelineAction
|
|
{
|
|
public PipelineDataAction(IReadOnlyList<Tag> tags)
|
|
{
|
|
this.Tags = tags ?? throw new ArgumentNullException(nameof(tags));
|
|
}
|
|
|
|
public IReadOnlyList<Tag> Tags { get; set; }
|
|
|
|
public override PipelineAction Clone() => new PipelineDataAction(new List<Tag>(this.Tags));
|
|
}
|
|
}
|