27 lines
729 B
C#
27 lines
729 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SMGen.Core
|
|
{
|
|
//// <Auto-Generated>
|
|
//// This is here so CodeMaid doesn't reorganize this document
|
|
//// </Auto-Generated>
|
|
///
|
|
public class Constants
|
|
{
|
|
|
|
public static readonly string BASE_HASH = "SMGEN";
|
|
public static readonly string BASE_PATH = Directory.GetCurrentDirectory();
|
|
|
|
public static readonly string FILES_TO_PROC = $"{BASE_HASH}:Files:Pending";
|
|
|
|
public const string redisBaseAddr = "SMGEN";
|
|
public const string rKeyFiles = $"{redisBaseAddr}:Files";
|
|
public const string rKeyEventi = $"{redisBaseAddr}:Eventi";
|
|
|
|
}
|
|
}
|