using Umbraco.Cms.Core.Models;
namespace Umbraco.Cms.Core.PropertyEditors
{
///
/// Determines if a property type's value should be compressed in memory
///
///
///
///
public interface IPropertyCacheCompression
{///
/// Whether a property on the content is/should be compressed
///
/// The content
/// The property to compress or not
/// Whether this content is the published version
bool IsCompressed(IReadOnlyContentBase content, string propertyTypeAlias, bool published);
}
}