004858cdae
- updateresurces setim x invio stima - update res act x invio update giacenze (inve)
33 lines
1.1 KiB
C#
33 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MagMan.Core
|
|
{
|
|
//// <Auto-Generated>
|
|
//// This is here so CodeMaid doesn't reorganize this document
|
|
//// </Auto-Generated>
|
|
public class Const
|
|
{
|
|
// dati conf REDIS Cache
|
|
public static readonly string BASE_PATH = Directory.GetCurrentDirectory();
|
|
|
|
public const string passPhrase = "9eb4660f-8753-46bc-b23b-08759ba03fe9";
|
|
|
|
// classi utilità x cache REDIS dati DB
|
|
public const string redisBaseAddr = "MagManUi";
|
|
public const string rKeyConfig = $"{redisBaseAddr}:Cache";
|
|
|
|
// REDIS Channels messaggi x QueueMan
|
|
public static readonly string Q_MMAN_GEN = $"MagManGeneral";
|
|
public static readonly string Q_MMAN_ALIAS_MAT = $"MagManAliasMaterial";
|
|
public static readonly string Q_MMAN_INVE = $"MagManInve";
|
|
public static readonly string Q_MMAN_LOG = $"MagManLog";
|
|
public static readonly string Q_MMAN_PROJ = $"MagManProj";
|
|
public static readonly string Q_MMAN_RES = $"MagManRes";
|
|
|
|
}
|
|
}
|