18 lines
394 B
C#
18 lines
394 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Erp.Languages;
|
|
|
|
public class LanguageTextCacheItem : object
|
|
{
|
|
public Dictionary<string, string> Dictionary { get; set; }
|
|
|
|
public LanguageTextCacheItem()
|
|
{ }
|
|
|
|
public static string CalculateCacheKey(string resourceName, string cultureName)
|
|
{
|
|
// .en.Erp.Dynamics
|
|
return $".{cultureName}.{resourceName}";
|
|
}
|
|
}
|
|
|