Files
Umbraco-CMS/src/Umbraco.Web/Models/ContentEditing/PostedFolder.cs
2018-03-27 10:04:07 +02:00

17 lines
402 B
C#

using System.Runtime.Serialization;
namespace Umbraco.Web.Models.ContentEditing
{
/// <summary>
/// Used to create a folder with the MediaController
/// </summary>
[DataContract]
public class PostedFolder
{
[DataMember(Name = "parentId")]
public string ParentId { get; set; }
[DataMember(Name = "name")]
public string Name { get; set; }
}
}