mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 19:49:06 +00:00
9 lines
133 B
C#
9 lines
133 B
C#
|
namespace AIStudio.Assistants.RewriteImprove;
|
||
|
|
||
|
public enum SentenceStructure
|
||
|
{
|
||
|
NOT_SPECIFIED = 0,
|
||
|
|
||
|
ACTIVE,
|
||
|
PASSIVE,
|
||
|
}
|