Fixes merge issues with left over IPublishedContentProperty
This commit is contained in:
@@ -4,14 +4,14 @@ using System.Web;
|
||||
|
||||
namespace Umbraco.Core.Dynamics
|
||||
{
|
||||
internal class PropertyResult : IPublishedContentProperty, IHtmlString
|
||||
internal class PropertyResult : IPublishedProperty, IHtmlString
|
||||
{
|
||||
private readonly IPublishedContentProperty _source;
|
||||
private readonly IPublishedProperty _source;
|
||||
private readonly string _alias;
|
||||
private readonly object _value;
|
||||
private readonly PropertyResultType _type;
|
||||
|
||||
internal PropertyResult(IPublishedContentProperty source, PropertyResultType type)
|
||||
internal PropertyResult(IPublishedProperty source, PropertyResultType type)
|
||||
{
|
||||
if (source == null) throw new ArgumentNullException("source");
|
||||
|
||||
|
||||
@@ -342,7 +342,7 @@
|
||||
<Compile Include="Models\EntityExtensions.cs" />
|
||||
<Compile Include="Models\Folder.cs" />
|
||||
<Compile Include="Models\IMemberGroup.cs" />
|
||||
<Compile Include="Models\IPublishedContentProperty.cs" />
|
||||
<Compile Include="Models\IPublishedProperty.cs" />
|
||||
<Compile Include="Models\IRelation.cs" />
|
||||
<Compile Include="Models\IRelationType.cs" />
|
||||
<Compile Include="Models\Membership\MembershipScenario.cs" />
|
||||
|
||||
Reference in New Issue
Block a user