Skip to content

Instantly share code, notes, and snippets.

@EngRajabi
Created March 10, 2020 07:47
Show Gist options
  • Save EngRajabi/770d05d1c0518b43b94820a839adadd1 to your computer and use it in GitHub Desktop.
Save EngRajabi/770d05d1c0518b43b94820a839adadd1 to your computer and use it in GitHub Desktop.
CacheMethodAttribute.cs
[AttributeUsage(AttributeTargets.Method)]
public class CacheMethodAttribute : Attribute
{
public CacheMethodAttribute(int secondsToCache = 10)
{
SecondsToCache = secondsToCache;
}
public int SecondsToCache { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment