Moves templatequery models into the right folder

This commit is contained in:
per ploug
2014-06-26 11:24:57 +02:00
parent 4fea55e751
commit 8a93c8371c
11 changed files with 11 additions and 17 deletions

View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Umbraco.Web.Models.TemplateQuery
{
public class PropertyModel
{
public string Name { get; set; }
public string Alias { get; set; }
public string Type { get; set; }
}
}