mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
16 lines
281 B
C#
16 lines
281 B
C#
using System;
|
|
|
|
namespace Helper.Cache
|
|
{
|
|
[Serializable]
|
|
public class CacheObj<T>
|
|
{
|
|
public string key { get; set; }
|
|
|
|
public T Obj { get; set; }
|
|
|
|
public DateTime InvalidTime { get; set; }
|
|
|
|
public DateTime CreateTime { get; set; }
|
|
}
|
|
} |