24 lines
753 B
C#
24 lines
753 B
C#
//// <Auto-Generated>
|
|
//// This is here so CodeMaid doesn't reorganize this document
|
|
//// </Auto-Generated>
|
|
namespace EgwCoreLib.Lux.Core
|
|
{
|
|
/// <summary>
|
|
/// Configurazione costanti applicative
|
|
/// </summary>
|
|
public class Const
|
|
{
|
|
|
|
// dati conf REDIS Cache
|
|
public static readonly string BASE_HASH = "LUX";
|
|
#if false
|
|
public static readonly string BASE_PATH = Directory.GetCurrentDirectory();
|
|
|
|
public static readonly string CALC_REQ_DONE = $"{BASE_HASH}:CalcRequests:Completed";
|
|
// REDIS Channels messaggi x QueueMan (verso UI/srv)
|
|
public static readonly string CALC_REQ_QUEUE = $"CalcRequest";
|
|
#endif
|
|
public static readonly string CALC_DONE_QUEUE = $"CalcCompleted";
|
|
}
|
|
}
|