using System; namespace BililiveRecorder.Flv.Pipeline { public class ProcessingComment { public ProcessingComment(CommentType t, string c) { this.T = t; this.C = c ?? throw new ArgumentNullException(nameof(c)); } /// /// Type /// public CommentType T { get; } /// /// Comment /// public string C { get; } public override string ToString() => $"{this.T} {this.C}"; } }