using Umbraco.Core.Models; namespace Umbraco.Core.Services { /// /// Placeholder for sharing logic between the content, media (and member) services /// TODO: Start sharing the logic! /// public interface IContentServiceBase : IService { /// /// Checks/fixes the data integrity of node paths/levels stored in the database /// ContentDataIntegrityReport CheckDataIntegrity(ContentDataIntegrityReportOptions options); } }