Files
Orchard/src/Orchard.Web/Modules/Orchard.OutputCache/Models/CacheSettingsPartRecord.cs
Sebastien Ros 0d437b8060 Importing the Contrib.Cache module
--HG--
branch : 1.x
2013-05-24 17:16:57 -07:00

17 lines
611 B
C#

using Orchard.ContentManagement.Records;
using Orchard.Data.Conventions;
namespace Orchard.OutputCache.Models {
public class CacheSettingsPartRecord : ContentPartRecord {
public virtual int DefaultCacheDuration { get; set; }
public virtual int DefaultMaxAge { get; set; }
public virtual bool DebugMode { get; set; }
public virtual bool ApplyCulture { get; set; }
[StringLengthMax]
public virtual string VaryQueryStringParameters { get; set; }
[StringLengthMax]
public virtual string IgnoredUrls { get; set; }
}
}