// ***********************************************************************
// 
//     Heath
// 
// ***********************************************************************
namespace Lib.Common.LoggingAPI.Service.Constants
{
    /// 
    /// Constants of the responses for this service.
    ///   
    public static class Responses
    {
        /// 
        /// The health response.
        /// 
        public const string HealthyService = "healthy";
        /// 
        /// The route does not exist response.
        /// 
        public const string RouteDoesNotExist = "The specified route '{0}' does not exist for method '{1}' in this service.";
        /// 
        /// The target response.
        /// 
        public const string Target = "{0}|{1}://{2}{3}";
    }
}