aboutsummaryrefslogtreecommitdiff
path: root/BDInfo/TSInterleavedFile.cs
diff options
context:
space:
mode:
Diffstat (limited to 'BDInfo/TSInterleavedFile.cs')
-rw-r--r--BDInfo/TSInterleavedFile.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/BDInfo/TSInterleavedFile.cs b/BDInfo/TSInterleavedFile.cs
index 9cc338df71..44a16bbaa6 100644
--- a/BDInfo/TSInterleavedFile.cs
+++ b/BDInfo/TSInterleavedFile.cs
@@ -18,6 +18,7 @@
//=============================================================================
using System.IO;
+using MediaBrowser.Model.IO;
// TODO: Do more interesting things here...
@@ -25,10 +26,10 @@ namespace BDInfo
{
public class TSInterleavedFile
{
- public FileInfo FileInfo = null;
+ public FileSystemMetadata FileInfo = null;
public string Name = null;
- public TSInterleavedFile(FileInfo fileInfo)
+ public TSInterleavedFile(FileSystemMetadata fileInfo)
{
FileInfo = fileInfo;
Name = fileInfo.Name.ToUpper();