LANCommander/LANCommander.Launcher/ViewModels/DepotGameDetailViewModel.cs
Pat Hartl b183e4b18c Remove old launcher, rename Avalonia launcher
Also adds ARM builds for Linux + Windows launcher
2026-06-06 05:49:24 -05:00

17 lines
544 B
C#

using System;
namespace LANCommander.Launcher.ViewModels;
/// <summary>
/// Depot-specific game detail view model. Extends <see cref="GameDetailViewModel"/>
/// so the ShellView DataTemplate can route to a distinct depot detail view.
/// FromLibrary is always false since this is only used in the depot context.
/// </summary>
public partial class DepotGameDetailViewModel : GameDetailViewModel
{
public DepotGameDetailViewModel(IServiceProvider serviceProvider)
: base(serviceProvider)
{
FromLibrary = false;
}
}