kreta/Kreta.Core/FileService/Configuration/Path.cs
2024-03-13 00:33:46 +01:00

10 lines
280 B
C#

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)];
}
}