mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-06 08:49:06 +00:00
14 lines
377 B
C#
14 lines
377 B
C#
|
namespace AIStudio.Assistants.ERI;
|
||
|
|
||
|
public static class OperatingSystemExtensions
|
||
|
{
|
||
|
public static string Name(this OperatingSystem os) => os switch
|
||
|
{
|
||
|
OperatingSystem.NONE => "No operating system specified",
|
||
|
|
||
|
OperatingSystem.WINDOWS => "Windows",
|
||
|
OperatingSystem.LINUX => "Linux",
|
||
|
|
||
|
_ => "Unknown operating system"
|
||
|
};
|
||
|
}
|