namespace LANCommander.Steam.Models; /// /// Represents a SteamCMD profile with username and install directory /// public class SteamCmdProfile { /// /// Steam username for this profile /// public string Username { get; set; } = string.Empty; /// /// Default install directory for this profile /// public string InstallDirectory { get; set; } = string.Empty; }