24 lines
526 B
C#
24 lines
526 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MP.MONO.Data
|
|
{
|
|
public class Utils
|
|
{
|
|
#if false
|
|
/// <summary>
|
|
/// Hash Redis x la chiave richiesta (es StatusMacchina, StateMachineIngressi, ...)
|
|
/// </summary>
|
|
/// <param name="keyName"></param>
|
|
/// <returns></returns>
|
|
public static string mHash(string keyName)
|
|
{
|
|
return $"MAPO-MONO:{keyName}";
|
|
}
|
|
#endif
|
|
}
|
|
}
|