19 lines
No EOL
693 B
C#
19 lines
No EOL
693 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace WebsitePanel.WebDav.Core.Config.Entities
|
|
{
|
|
public class ElementsRendering : AbstractConfigCollection
|
|
{
|
|
public int DefaultCount { get; private set; }
|
|
public int AddElementsCount { get; private set; }
|
|
public List<string> ElementsToIgnore { get; private set; }
|
|
|
|
public ElementsRendering()
|
|
{
|
|
DefaultCount = ConfigSection.ElementsRendering.DefaultCount;
|
|
AddElementsCount = ConfigSection.ElementsRendering.AddElementsCount;
|
|
ElementsToIgnore = ConfigSection.ElementsRendering.ElementsToIgnore.Split(',').ToList();
|
|
}
|
|
}
|
|
} |