Add project files.
This commit is contained in:
29
Core.Blueprint.Logging/Constants/Responses.cs
Normal file
29
Core.Blueprint.Logging/Constants/Responses.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
// ***********************************************************************
|
||||
// <copyright file="Responses.cs">
|
||||
// Heath
|
||||
// </copyright>
|
||||
// ***********************************************************************
|
||||
|
||||
namespace Core.Blueprint.Logging
|
||||
{
|
||||
/// <summary>
|
||||
/// Constants of the responses for this service.
|
||||
/// </summary>
|
||||
public static class Responses
|
||||
{
|
||||
/// <summary>
|
||||
/// The health response.
|
||||
/// </summary>
|
||||
public const string HealthyService = "healthy";
|
||||
|
||||
/// <summary>
|
||||
/// The route does not exist response.
|
||||
/// </summary>
|
||||
public const string RouteDoesNotExist = "The specified route '{0}' does not exist for method '{1}' in this service.";
|
||||
|
||||
/// <summary>
|
||||
/// The target response.
|
||||
/// </summary>
|
||||
public const string Target = "{0}|{1}://{2}{3}";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user