- using System;
-
- namespace HealthMonitor.Util.Common.Cache
- {
-
-
-
- [AttributeUsage(AttributeTargets.Class, Inherited = false)]
- public class DurableCacheEntityAttr : Attribute
- {
-
-
-
- public int Duration { get; private set; }
-
- public DurableCacheEntityAttr(int duration)
- {
- Duration = duration;
- }
- }
- }
|