using System.Configuration; namespace Kreta.Core.FileService.Configuration { public class FileServiceConfiguration : ConfigurationSection, IFileServiceConfiguration { [ConfigurationProperty("", IsDefaultCollection = true)] public StorageElementCollection Storages => (StorageElementCollection)base[string.Empty]; } }