LANCommander/LANCommander.Client/Models/ActionSelectorDialogOptions.cs

17 lines
406 B
C#
Raw Permalink Normal View History

2024-06-01 22:47:56 -05:00
using LANCommander.Client.Data.Models;
using System;
2024-05-25 22:21:04 -05:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LANCommander.Client.Models
{
public class ActionSelectorDialogOptions
{
public IEnumerable<SDK.Models.Action> Actions { get; set; }
public string Title { get; set; }
2024-06-01 22:47:56 -05:00
public Game Game { get; set; }
2024-05-25 22:21:04 -05:00
}
}