LANCommander/LANCommander.Launcher.Models/ActionSelectorDialogOptions.cs

17 lines
410 B
C#
Raw Permalink Normal View History

using LANCommander.Launcher.Data.Models;
2024-06-01 22:47:56 -05:00
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.Launcher.Models
2024-05-25 22:21:04 -05:00
{
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
}
}