Enum CrudFeatures
- Namespace
- Htmx.Components.Models
- Assembly
- Htmx.Components.dll
Defines the CRUD (Create, Read, Update, Delete) operations that a model handler supports. These flags determine which actions are available in the user interface and API.
[Flags]
public enum CrudFeatures
- Extension Methods
Fields
Create = 1
Create operation is supported - allows adding new entities.
Delete = 8
Delete operation is supported - allows removing entities.
None = 0
No CRUD operations are supported.
Read = 2
Read operation is supported - allows viewing/listing entities.
Update = 4
Update operation is supported - allows modifying existing entities.