10 lines
240 B
C#
10 lines
240 B
C#
namespace KonSoft.Dispatch.Settings;
|
|
|
|
public static class DispatchSettings
|
|
{
|
|
private const string Prefix = "Dispatch";
|
|
|
|
//Add your own setting names here. Example:
|
|
//public const string MySetting1 = Prefix + ".MySetting1";
|
|
}
|