aboutsummaryrefslogtreecommitdiff
path: root/Emby.Naming/Video/StackResult.cs
blob: de35d2825a4d66f0d0e7eb484e3f321212c65c8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System.Collections.Generic;

namespace Emby.Naming.Video
{
    public class StackResult
    {
        public List<FileStack> Stacks { get; set; }

        public StackResult()
        {
            Stacks = new List<FileStack>();
        }
    }
}