jellyfin/Emby.Naming/Video/FileStack.cs

29 lines
635 B
C#
Raw Normal View History

using System;
2018-09-12 13:26:21 -04:00
using System.Collections.Generic;
using System.Linq;
namespace Emby.Naming.Video
{
public class FileStack
{
public string Name { get; set; }
public List<string> Files { get; set; }
public bool IsDirectoryStack { get; set; }
public FileStack()
{
Files = new List<string>();
}
2019-05-10 14:37:42 -04:00
public bool ContainsFile(string file, bool isDirectory)
2018-09-12 13:26:21 -04:00
{
2019-05-10 14:37:42 -04:00
if (IsDirectoryStack == isDirectory)
2018-09-12 13:26:21 -04:00
{
return Files.Contains(file, StringComparer.OrdinalIgnoreCase);
}
return false;
}
}
}