Files
Umbraco-CMS/src/Umbraco.Core/Models/ContentEditing/PostedFolder.cs

18 lines
410 B
C#
Raw Normal View History

2018-03-27 10:04:07 +02:00
using System.Runtime.Serialization;
namespace Umbraco.Cms.Core.Models.ContentEditing
2018-03-27 10:04:07 +02:00
{
/// <summary>
/// Used to create a folder with the MediaController
/// </summary>
[DataContract]
public class PostedFolder
{
[DataMember(Name = "parentId")]
2022-02-16 16:03:53 +01:00
public string? ParentId { get; set; }
2018-03-27 10:04:07 +02:00
[DataMember(Name = "name")]
2022-02-16 16:03:53 +01:00
public string? Name { get; set; }
2018-03-27 10:04:07 +02:00
}
}