10 lines
197 B
C#
10 lines
197 B
C#
using LANCommander.Data.Models;
|
|
|
|
namespace LANCommander.Models
|
|
{
|
|
public class EditKeysViewModel
|
|
{
|
|
public Game Game { get; set; }
|
|
public string Keys { get; set; }
|
|
}
|
|
}
|