11 lines
196 B
C#
11 lines
196 B
C#
using System;
|
|
|
|
namespace TheXamlGuy.Framework.Core
|
|
{
|
|
public interface IWritableJsonConfigurationDescriptor
|
|
{
|
|
Type ConfigurationType { get; }
|
|
|
|
string Key { get; }
|
|
}
|
|
} |