mirror of
https://github.com/sp-tarkov/launcher.git
synced 2025-02-13 09:50:43 -05:00
15 lines
353 B
C#
15 lines
353 B
C#
using Aki.Launcher.Models.Launcher;
|
|
using ReactiveUI;
|
|
|
|
namespace Aki.Launcher.ViewModels.Dialogs
|
|
{
|
|
public class ChangeEditionDialogViewModel : ViewModelBase
|
|
{
|
|
public EditionCollection editions { get; set; } = new EditionCollection();
|
|
|
|
public ChangeEditionDialogViewModel(IScreen Host) : base(Host)
|
|
{
|
|
}
|
|
}
|
|
}
|