11 lines
No EOL
311 B
C#
11 lines
No EOL
311 B
C#
using System.Collections.Generic;
|
|
using LANCommander.Steam.Models;
|
|
|
|
namespace LANCommander.SDK.Models;
|
|
|
|
public class SteamSettings
|
|
{
|
|
public string Path { get; set; } = string.Empty;
|
|
public string InstallDirectory { get; set; } = "";
|
|
public ICollection<SteamCmdProfile> Profiles { get; set; } = [];
|
|
} |