This commit is contained in:
2025-07-04 09:50:02 +08:00
commit 3d800dbd11
2564 changed files with 1353015 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Infrastructure.Cache
{
public class CacheTime
{
// 客户端缓存时间
public TimeSpan ClientTimeSpan { get; set; }
public TimeSpan? SharedTimeSpan { get; set; }
public DateTimeOffset AbsoluteExpiration { get; set; }
}
}