Rename content property to content value in view model layer

This commit is contained in:
kjac
2023-02-14 10:47:16 +01:00
parent 1868269905
commit 51f2b6cd88
7 changed files with 524 additions and 16 deletions

View File

@@ -0,0 +1,12 @@
namespace Umbraco.Cms.Api.Management.ViewModels.Content;
public abstract class ValueViewModelBase
{
public string? Culture { get; set; }
public string? Segment { get; set; }
public string Alias { get; set; } = string.Empty;
public object? Value { get; set; }
}