21 lines
408 B
C#
21 lines
408 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HuanMeng.DotNetCore.CacheHelper.Contract
|
|
{
|
|
/// <summary>
|
|
/// 清除缓存
|
|
/// </summary>
|
|
public interface ICacheClearData
|
|
{
|
|
/// <summary>
|
|
/// 清除数据
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
bool ClearData();
|
|
}
|
|
}
|