feyris-tan ef86554f9a Import
2025-05-12 22:09:16 +02:00

23 lines
467 B
C#

using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
namespace skyscraper2.TsDuckInterface.Inputs
{
class FileInput : TspInput
{
public FileInput(FileInfo sourceFile)
{
SourceFile = sourceFile;
}
public FileInfo SourceFile { get; set; }
public override string ToString()
{
return String.Format("file \"{0}\"", SourceFile.FullName);
}
}
}