10 lines
280 B
C#
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)];
|
|
}
|
|
}
|