20 lines
577 B
C#
20 lines
577 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Core
|
|
{
|
|
public class Const
|
|
{
|
|
|
|
// classi utilità x cache REDIS dati DB
|
|
public const string redisBaseAddr = "LiMan:Ui";
|
|
public const string rKeyConfig = $"{redisBaseAddr}:Cache";
|
|
public const string ENRL_MSG_PIPE = $"{redisBaseAddr}:MPipe:Enroll";
|
|
public const string TASK_MSG_PIPE = $"{redisBaseAddr}:MPipe:Tasks";
|
|
public const string UPDT_MSG_PIPE = $"{redisBaseAddr}:MPipe:Update";
|
|
}
|
|
}
|