Removed "double" file

This commit is contained in:
jakobdyrby
2014-05-08 12:30:53 +02:00
parent 531eba6e28
commit cb5fa8ac13
2 changed files with 1 additions and 58 deletions

View File

@@ -1,56 +0,0 @@
using System.Xml;
using Umbraco.Core.Models;
namespace Umbraco.Core.Services
{
internal interface IMacroProperty
{
/// <summary>
/// The sortorder
/// </summary>
int SortOrder { get; set; }
/// <summary>
/// The alias if of the macroproperty, this is used in the special macro element
/// <?UMBRACO_MACRO macroAlias="value"></?UMBRACO_MACRO>
///
/// </summary>
string Alias { get; set; }
/// <summary>
/// The userfriendly name
/// </summary>
string Name { get; set; }
/// <summary>
/// Gets the id.
/// </summary>
/// <value>The id.</value>
int Id { get; }
/// <summary>
/// Gets or sets the macro.
/// </summary>
/// <value>The macro.</value>
IMacro Macro { get; set; }
/// <summary>
/// The basetype which defines which component is used in the UI for editing content
/// </summary>
IMacroPropertyType Type { get; set; }
/// <summary>
/// Deletes the current macroproperty
/// </summary>
void Delete();
void Save();
/// <summary>
/// Retrieve a Xmlrepresentation of the MacroProperty used for exporting the Macro to the package
/// </summary>
/// <param name="xd">XmlDocument context</param>
/// <returns>A xmlrepresentation of the object</returns>
XmlElement ToXml(XmlDocument xd);
}
}

View File

@@ -350,7 +350,7 @@
<Compile Include="Models\IPublishedProperty.cs" />
<Compile Include="Models\IRelation.cs" />
<Compile Include="Models\IRelationType.cs" />
<Compile Include="Models\IStyleSheet.cs" />
<Compile Include="Models\IStylesheet.cs" />
<Compile Include="Models\Membership\MembershipScenario.cs" />
<Compile Include="Models\MemberGroup.cs" />
<Compile Include="Models\MemberTypePropertyProfileAccess.cs" />
@@ -1039,7 +1039,6 @@
<Compile Include="Services\IEntityService.cs" />
<Compile Include="Services\IFileService.cs" />
<Compile Include="Services\ILocalizationService.cs" />
<Compile Include="Services\IMacroProperty.cs" />
<Compile Include="Services\IMacroService.cs" />
<Compile Include="Services\IMediaService.cs" />
<Compile Include="Services\IMemberGroupService.cs" />