mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-03-22 22:11:36 +00:00
17 lines
531 B
C#
17 lines
531 B
C#
|
|
namespace AIStudio.Settings.DataModel;
|
||
|
|
|
||
|
|
public static class StartPageExtensions
|
||
|
|
{
|
||
|
|
public static string ToRoute(this StartPage startPage) => startPage switch
|
||
|
|
{
|
||
|
|
StartPage.HOME => string.Empty,
|
||
|
|
StartPage.CHAT => Routes.CHAT,
|
||
|
|
StartPage.ASSISTANTS => Routes.ASSISTANTS,
|
||
|
|
StartPage.INFORMATION => Routes.ABOUT,
|
||
|
|
StartPage.PLUGINS => Routes.PLUGINS,
|
||
|
|
StartPage.SUPPORTERS => Routes.SUPPORTERS,
|
||
|
|
StartPage.SETTINGS => Routes.SETTINGS,
|
||
|
|
|
||
|
|
_ => string.Empty,
|
||
|
|
};
|
||
|
|
}
|