14 lines
400 B
C#
14 lines
400 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FlexitimeAPI.Constants
|
|
{
|
|
public static class Constants
|
|
{
|
|
public const string InvalidAppSettings =
|
|
"There is a problem with the structure of the appsettings.json. Require sections or items may be missing or named incorrectly. Details: {0}";
|
|
}
|
|
}
|