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