Files
lserp_cs_5.0/插件库/Zhaizj.Framework/Caching/IApplicationCache.cs
T
2026-07-10 15:25:05 +08:00

17 lines
280 B
C#

using System;
namespace Zhaizj.Framework.Caching {
public interface IApplicationCache {
object Get( string key );
void Put( string key, object val );
void Put( string key, object val, int minutes );
void Remove( string key );
}
}