manual merging/fixing, project builds now, but need to manually merge the remaining
This commit is contained in:
21
src/Umbraco.Web/Models/ContentEditing/UrlAndAnchors.cs
Normal file
21
src/Umbraco.Web/Models/ContentEditing/UrlAndAnchors.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Runtime.Serialization;
|
||||
|
||||
namespace Umbraco.Web.Models.ContentEditing
|
||||
{
|
||||
[DataContract(Name = "urlAndAnchors", Namespace = "")]
|
||||
public class UrlAndAnchors
|
||||
{
|
||||
public UrlAndAnchors(string url, IEnumerable<string> anchorValues)
|
||||
{
|
||||
Url = url;
|
||||
AnchorValues = anchorValues;
|
||||
}
|
||||
|
||||
[DataMember(Name = "url")]
|
||||
public string Url { get; }
|
||||
|
||||
[DataMember(Name = "anchorValues")]
|
||||
public IEnumerable<string> AnchorValues { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user