using System.Configuration; namespace Kreta.Core.FileService.Configuration { public class Path : ConfigurationElement { [ConfigurationProperty(nameof(Value), IsRequired = true, IsKey = true)] public string Value => (string)this[nameof(Value)]; } }