mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-07-15 23:13:40 +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; }
|
|||
|
}
|
|||
|
}
|