jellyfin/Emby.Naming/Video/StackResult.cs

15 lines
257 B
C#

using System.Collections.Generic;
namespace Emby.Naming.Video
{
public class StackResult
{
public List<FileStack> Stacks { get; set; }
public StackResult()
{
Stacks = new List<FileStack>();
}
}
}