10 lines
194 B
C#
10 lines
194 B
C#
using NitroxModel.Discovery.Models;
|
|
|
|
namespace Nitrox.Launcher.Models.Design;
|
|
|
|
public class KnownGame
|
|
{
|
|
public string PathToGame { get; init; }
|
|
public Platform Platform { get; init; }
|
|
}
|