I am trying to import a csv table like so to the structure in FGameplayTagTableRow as described here Gameplay Tags | Unreal Engine Documentation :
/** Simple struct for a table row in the gameplay tag table row and element in the in list */
USTRUCT()
struct FGameplayTagTableRow : public FTableRowBase
{
GENERATED_USTRUCT_BODY()
/** Tag specified in the table */
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category=GameplayTag)
FName Tag;
/** Developer comment clarifying the usage of a particular tag, not user facing */
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category=GameplayTag)
FString DevComment;
but every time I get error that column Tag not defined or DevComment not defined. Please advice.