17 lines
347 B
C#
17 lines
347 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 = "MagManUi";
|
|
public const string rKeyConfig = $"{redisBaseAddr}:Cache";
|
|
}
|
|
}
|