using System.Collections.Generic; namespace Orchard.Layouts.Models { public class SnippetDescriptor { public SnippetDescriptor() { Fields = new List(); } public IList Fields { get; set; } } }