2021-12-27 00:38:44 +00:00
|
|
|
|
using Wabbajack.DTOs;
|
2021-12-26 21:56:44 +00:00
|
|
|
|
|
|
|
|
|
namespace Wabbajack
|
|
|
|
|
{
|
|
|
|
|
public class GameVM
|
|
|
|
|
{
|
|
|
|
|
public Game Game { get; }
|
|
|
|
|
public string DisplayName { get; }
|
|
|
|
|
|
|
|
|
|
public GameVM(Game game)
|
|
|
|
|
{
|
|
|
|
|
Game = game;
|
|
|
|
|
DisplayName = game.ToDescriptionString();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|