mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 03:25:23 +08:00
11 lines
285 B
C#
11 lines
285 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Orchard.Layouts.Models {
|
|
public class SnippetDescriptor {
|
|
public SnippetDescriptor() {
|
|
Fields = new List<SnippetFieldDescriptor>();
|
|
}
|
|
|
|
public IList<SnippetFieldDescriptor> Fields { get; set; }
|
|
}
|
|
} |