sozsoft-platform/api/modules/Sozsoft.Languages/Sozsoft.Languages.Domain/Languages/LanguageTextCacheItem.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

18 lines
402 B
C#

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}";
}
}