Files
Umbraco-CMS/src/Umbraco.Core/Models/ContentEditing/PostedFolder.cs
2022-02-16 16:03:53 +01:00

18 lines
410 B
C#

using System.Runtime.Serialization;
namespace Umbraco.Cms.Core.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; }
}
}