Working on

This commit is contained in:
Shannon
2014-03-11 14:23:51 +11:00
parent ec6cb4520c
commit d737afa327
18 changed files with 628 additions and 94 deletions

View File

@@ -1,4 +1,8 @@
namespace Umbraco.Web.Models
using System.Xml;
using Umbraco.Core;
using Umbraco.Core.Models;
namespace Umbraco.Web.Models
{
/// <summary>
/// A simple representation of an Umbraco property
@@ -6,7 +10,8 @@
public class UmbracoProperty
{
public string Alias { get; set; }
public string Value { get; set; }
public object Value { get; set; }
public string Name { get; set; }
}
}