9 lines
151 B
C#
9 lines
151 B
C#
namespace Pilz.Configuration;
|
|
|
|
public interface ISettingsIdentifier
|
|
{
|
|
#if NET8_0_OR_GREATER
|
|
static abstract string Identifier { get; }
|
|
#endif
|
|
}
|