24 lines
579 B
C#
24 lines
579 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Xml;
|
|
using umbraco.cms.businesslogic.property;
|
|
using umbraco.cms.businesslogic.propertytype;
|
|
using umbraco.DataLayer;
|
|
using System.Runtime.CompilerServices;
|
|
using umbraco.cms.helpers;
|
|
|
|
namespace umbraco.cms.businesslogic
|
|
{
|
|
/// <summary>
|
|
/// Not implemented
|
|
/// </summary>
|
|
public interface ISaveHandlerContents
|
|
{
|
|
/// <summary>
|
|
/// Not implemented
|
|
/// </summary>
|
|
bool Execute(cms.businesslogic.Content contentObject);
|
|
}
|
|
}
|