Merge branch temp8 into temp8-11502
This commit is contained in:
22
src/Umbraco.Web/Models/ContentEditing/UnpublishContent.cs
Normal file
22
src/Umbraco.Web/Models/ContentEditing/UnpublishContent.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
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
|
||||
{
|
||||
/// <summary>
|
||||
/// Used to unpublish content and variants
|
||||
/// </summary>
|
||||
[DataContract(Name = "unpublish", Namespace = "")]
|
||||
public class UnpublishContent
|
||||
{
|
||||
[DataMember(Name = "id")]
|
||||
public int Id { get; set; }
|
||||
|
||||
[DataMember(Name = "cultures")]
|
||||
public string[] Cultures { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user