using System; namespace LANCommander.Launcher.ViewModels; /// /// Depot-specific game detail view model. Extends /// 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. /// public partial class DepotGameDetailViewModel : GameDetailViewModel { public DepotGameDetailViewModel(IServiceProvider serviceProvider) : base(serviceProvider) { FromLibrary = false; } }