Implements CodeFileController

This commit is contained in:
Niels Hartvig
2017-01-09 22:54:28 +01:00
parent f5f9ff29ce
commit 4c330c8654
5 changed files with 229 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace Umbraco.Web.Models.ContentEditing
{
[DataContract(Name = "scriptFile", Namespace = "")]
public class CodeFileDisplay
{
[DataMember(Name = "virtualPath")]
public string VirtualPath { get; set; }
[DataMember(Name = "content")]
public string Content { get; set; }
[DataMember(Name = "snippet")]
public string Snippet { get; set; }
}
}