Statistics
| Branch: | Revision:

root / trunk / hammock / src / net35 / Hammock / Caching / CacheOptions.cs @ 0eea575a

History | View | Annotate | Download (240 Bytes)

1
using System;
2

    
3
namespace Hammock.Caching
4
{
5
#if !SILVERLIGHT
6
    [Serializable]
7
#endif
8
    public class CacheOptions
9
    {
10
        public virtual CacheMode Mode { get; set; }
11
        public virtual TimeSpan Duration { get; set; }
12
    }
13
}