mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-28 18:59:47 +00:00
16 lines
415 B
C#
16 lines
415 B
C#
|
namespace AIStudio.Settings.DataModel;
|
||
|
|
||
|
public static class DataSourceExtension
|
||
|
{
|
||
|
public static string GetDisplayName(this DataSourceType type)
|
||
|
{
|
||
|
return type switch
|
||
|
{
|
||
|
DataSourceType.LOCAL_FILE => "Local File",
|
||
|
DataSourceType.LOCAL_DIRECTORY => "Local Directory",
|
||
|
DataSourceType.ERI => "ERI Server",
|
||
|
|
||
|
_ => "None",
|
||
|
};
|
||
|
}
|
||
|
}
|