Concept Flow - Flags attribute and bitwise enums
Define enum with Flags attribute
Assign combined flags using bitwise OR
Check flags using bitwise AND
Use flags in conditions or output
This flow shows how to define an enum with Flags, combine values using bitwise OR, and check flags using bitwise AND.