2019-12-13 19:11:37 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
#pragma warning disable SA1600
|
|
|
|
|
2019-01-13 19:54:44 +00:00
|
|
|
using System.Collections.Generic;
|
2018-09-12 17:26:21 +00:00
|
|
|
|
|
|
|
namespace Emby.Naming.Video
|
|
|
|
{
|
|
|
|
public class StackResult
|
|
|
|
{
|
|
|
|
public List<FileStack> Stacks { get; set; }
|
|
|
|
|
|
|
|
public StackResult()
|
|
|
|
{
|
|
|
|
Stacks = new List<FileStack>();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|