Revert files that shouldn't change back in v11
This commit is contained in:
@@ -1,22 +1,18 @@
|
||||
using Umbraco.Cms.Core.Models.PublishedContent;
|
||||
using Umbraco.Cms.Core.Models.PublishedContent;
|
||||
using Umbraco.Cms.Core.PublishedCache;
|
||||
using Umbraco.Cms.Infrastructure.PublishedCache.DataSource;
|
||||
|
||||
namespace Umbraco.Cms.Infrastructure.PublishedCache;
|
||||
|
||||
public struct ContentNodeKit
|
||||
{
|
||||
[Obsolete("This will be changed to a property in future versions")]
|
||||
public ContentNode Node = null!;
|
||||
public struct ContentNodeKit
|
||||
{
|
||||
public ContentNode Node { get; } = null!;
|
||||
|
||||
[Obsolete("This will be changed to a property in future versions")]
|
||||
public int ContentTypeId;
|
||||
public int ContentTypeId { get; }
|
||||
|
||||
[Obsolete("This will be changed to a property in future versions")]
|
||||
public ContentData? DraftData;
|
||||
public ContentData? DraftData { get; }
|
||||
|
||||
[Obsolete("This will be changed to a property in future versions")]
|
||||
public ContentData? PublishedData;
|
||||
public ContentData? PublishedData { get; }
|
||||
|
||||
public ContentNodeKit(ContentNode node, int contentTypeId, ContentData? draftData, ContentData? publishedData)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user