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 = 1Create operation is supported - allows adding new entities.
Delete = 8Delete operation is supported - allows removing entities.
None = 0No CRUD operations are supported.
Read = 2Read operation is supported - allows viewing/listing entities.
Update = 4Update operation is supported - allows modifying existing entities.