sozsoft-platform/api/modules/Sozsoft.Languages/Sozsoft.Languages.Domain/Languages/LanguageTextCacheItem.cs

19 lines
402 B
C#
Raw Normal View History

2026-02-24 20:44:16 +00:00
using System.Collections.Generic;
namespace Sozsoft.Languages;
public class LanguageTextCacheItem : object
{
public Dictionary<string, string> Dictionary { get; set; }
public LanguageTextCacheItem()
{ }
public static string CalculateCacheKey(string resourceName, string cultureName)
{
// .en.Sozsoft.Dynamics
return $".{cultureName}.{resourceName}";
}
}