mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-06 15:17:34 +00:00
11 lines
248 B
C#
11 lines
248 B
C#
using System.Collections.Generic;
|
|
|
|
namespace ServerManagerTool.Common.Model
|
|
{
|
|
public class SteamCmdAppManifest
|
|
{
|
|
public string appid { get; set; }
|
|
|
|
public List<SteamCmdManifestUserConfig> UserConfig { get; set; }
|
|
}
|
|
}
|