init lserp cs 5.0
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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 );
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user