LANCommander/LANCommander.Launcher/ViewModels/DepotGameDetailViewModel.cs

18 lines
544 B
C#
Raw Permalink Normal View History

2026-04-07 23:12:22 -05:00
using System;
namespace LANCommander.Launcher.ViewModels;
2026-04-07 23:12:22 -05:00
/// <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;
}
}