Files
ZelWiki/ZelWiki.Caching/IWikiCacheKey.cs
2025-02-20 15:20:28 +08:00

8 lines
120 B
C#

namespace ZelWiki.Caching
{
public interface IWikiCacheKey
{
public string Key { get; set; }
}
}