namespace CacheModule{ public enum Duration { OneSecond = 1, OneMinute = 60, OneHour = 3600, OneDay = 86400, OneWeek = 604800, OneMonth = 2592000, OneYear = 31536000, FiveSeconds = 5, ThirtySeconds = 30, ThirtyMinutes = 1800, SixHours = 21600, TwelveHours = 43200, TwoDays = 172800, ThreeDays = 259200, TwoWeeks = 1209600, ThreeMonths = 7776000, SixMonths = 15552000 } }