mirror of
https://github.com/Leonmmcoset/CMLeonOS.git
synced 2026-03-03 11:37:01 +00:00
18 lines
540 B
C#
18 lines
540 B
C#
using System;
|
|
|
|
namespace CMLeonOS.Commands.System
|
|
{
|
|
public static class WhoamiCommand
|
|
{
|
|
public static void ShowCurrentUsername(CMLeonOS.UserSystem userSystem)
|
|
{
|
|
Console.WriteLine("====================================");
|
|
Console.WriteLine(" Current User");
|
|
Console.WriteLine("====================================");
|
|
Console.WriteLine();
|
|
Console.WriteLine($"Username: {userSystem.CurrentUsername}");
|
|
Console.WriteLine();
|
|
}
|
|
}
|
|
}
|