Merge remote-tracking branch 'origin/v11/dev' into v12/dev
This commit is contained in:
16
src/Umbraco.Core/Models/ContentEditing/PublishContent.cs
Normal file
16
src/Umbraco.Core/Models/ContentEditing/PublishContent.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System.Runtime.Serialization;
|
||||
|
||||
namespace Umbraco.Cms.Core.Models.ContentEditing;
|
||||
|
||||
/// <summary>
|
||||
/// Used to publish content and variants
|
||||
/// </summary>
|
||||
[DataContract(Name = "publish", Namespace = "")]
|
||||
public class PublishContent
|
||||
{
|
||||
[DataMember(Name = "id")]
|
||||
public int Id { get; set; }
|
||||
|
||||
[DataMember(Name = "cultures")]
|
||||
public string[]? Cultures { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user