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