using Umbraco.Cms.Core.Models;
namespace Umbraco.Cms.Core.PropertyEditors;
public interface IPropertyCacheCompressionOptions
{
///
/// Whether a property on the content is/should be compressed
///
/// The content
/// The property to compress or not
/// The datatype of the property to compress or not
/// Whether this content is the published version
bool IsCompressed(IReadOnlyContentBase content, IPropertyType propertyType, IDataEditor dataEditor, bool published);
}