Files
Umbraco-CMS/src/Umbraco.Core/Services/IContentServiceBase.cs

17 lines
525 B
C#
Raw Normal View History

using Umbraco.Core.Models;
namespace Umbraco.Core.Services
2017-05-12 14:49:44 +02:00
{
/// <summary>
2019-01-22 18:03:39 -05:00
/// Placeholder for sharing logic between the content, media (and member) services
2017-05-12 14:49:44 +02:00
/// TODO: Start sharing the logic!
/// </summary>
public interface IContentServiceBase : IService
2020-04-07 01:02:08 +10:00
{
/// <summary>
/// Checks/fixes the data integrity of node paths/levels stored in the database
2020-04-07 01:02:08 +10:00
/// </summary>
ContentDataIntegrityReport CheckDataIntegrity(ContentDataIntegrityReportOptions options);
2020-04-07 01:02:08 +10:00
}
2017-07-20 11:21:28 +02:00
}