mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 20:29:07 +00:00
11 lines
136 B
C#
11 lines
136 B
C#
|
namespace AIStudio.Components.Blocks;
|
||
|
|
||
|
public enum ReadWebContentSteps
|
||
|
{
|
||
|
START,
|
||
|
LOADING,
|
||
|
PARSING,
|
||
|
CLEANING,
|
||
|
DONE,
|
||
|
}
|