2024-08-04 17:53:19 -05:00
|
|
|
|
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;
|
|
|
|
|
|
|
2024-08-04 17:53:19 -05:00
|
|
|
|
namespace LANCommander.Launcher.Models
|
2024-05-25 22:21:04 -05:00
|
|
|
|
{
|
|
|
|
|
|
public class ActionSelectorDialogOptions
|
|
|
|
|
|
{
|
2025-11-29 18:24:27 -06:00
|
|
|
|
public IEnumerable<SDK.Models.Manifest.Action> Actions { get; set; }
|
2024-05-25 22:21:04 -05:00
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
}
|