Class PropertyTypeContainerModelBase
Represents the base model for a container that holds property types within a content type.
Inheritance
object
Namespace: Umbraco.Cms.Api.Management.ViewModels.ContentType
Assembly: Umbraco.Cms.Api.Management.dll
Syntax
public abstract class PropertyTypeContainerModelBase
Constructors
View SourcePropertyTypeContainerModelBase()
Declaration
protected PropertyTypeContainerModelBase()
Properties
View SourceId
Gets or sets the unique identifier for the property type container.
Declaration
public Guid Id { get; set; }
Property Value
| Type | Description |
|---|---|
| Guid |
Name
Gets or sets the display name of this property type container.
Declaration
public string? Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Parent
Gets or sets the reference to the parent property type container, if any.
Declaration
public ReferenceByIdModel? Parent { get; set; }
Property Value
| Type | Description |
|---|---|
| ReferenceByIdModel |
SortOrder
Gets or sets the order in which the property type container is sorted.
Declaration
public int SortOrder { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
Type
Gets or sets the type of the property container, such as "tab" or "group". This value is a string to allow for future extensibility.
Declaration
[Required]
public string Type { get; set; }
Property Value
| Type | Description |
|---|---|
| string |