aboutsummaryrefslogtreecommitdiff
path: root/Emby.Naming/Video/FileStack.cs
blob: 3ef190b865d90a400486fba934a02659f36a8e2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#pragma warning disable CS1591

using System;
using System.Collections.Generic;
using System.Linq;

namespace Emby.Naming.Video
{
    public class FileStack
    {
        public FileStack()
        {
            Files = new List<string>();
        }

        public string Name { get; set; }

        public List<string> Files { get; set; }

        public bool IsDirectoryStack { get; set; }

        public bool ContainsFile(string file, bool isDirectory)
        {
            if (IsDirectoryStack == isDirectory)
            {
                return Files.Contains(file, StringComparer.OrdinalIgnoreCase);
            }

            return false;
        }
    }
}