mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-03-22 22:11:36 +00:00
10 lines
140 B
C#
10 lines
140 B
C#
|
|
namespace AIStudio.Assistants.SlideBuilder;
|
||
|
|
|
||
|
|
public enum AudienceAgeGroup
|
||
|
|
{
|
||
|
|
UNSPECIFIED = 0,
|
||
|
|
|
||
|
|
CHILDREN,
|
||
|
|
TEENAGERS,
|
||
|
|
ADULTS,
|
||
|
|
}
|