mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 22:29:07 +00:00
24 lines
1001 B
C#
24 lines
1001 B
C#
namespace AIStudio.Assistants.Agenda;
|
|
|
|
public static class NumberParticipantsExtensions
|
|
{
|
|
public static string Name(this NumberParticipants numberParticipants) => numberParticipants switch
|
|
{
|
|
NumberParticipants.NOT_SPECIFIED => "Please select how many participants are expected",
|
|
|
|
NumberParticipants.PEER_TO_PEER => "2 (peer to peer)",
|
|
|
|
NumberParticipants.SMALL_GROUP => "3 - 5 (small group)",
|
|
NumberParticipants.LARGE_GROUP => "6 - 12 (large group)",
|
|
NumberParticipants.MULTIPLE_SMALL_GROUPS => "13 - 20 (multiple small groups)",
|
|
NumberParticipants.MULTIPLE_LARGE_GROUPS => "21 - 30 (multiple large groups)",
|
|
|
|
NumberParticipants.SYMPOSIUM => "31 - 100 (symposium)",
|
|
NumberParticipants.CONFERENCE => "101 - 200 (conference)",
|
|
NumberParticipants.CONGRESS => "201 - 1,000 (congress)",
|
|
|
|
NumberParticipants.LARGE_EVENT => "1,000+ (large event)",
|
|
|
|
_ => "Unknown"
|
|
};
|
|
} |