mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
Workshop - Auto-enable plugins after installing them Workshop - Show the latest release above the details page
19 lines
589 B
C#
19 lines
589 B
C#
using Artemis.UI.Screens.Workshop.EntryReleases;
|
|
using Artemis.UI.Shared.Routing;
|
|
using Artemis.WebClient.Workshop;
|
|
using PropertyChanged.SourceGenerator;
|
|
|
|
namespace Artemis.UI.Screens.Workshop.Layout;
|
|
|
|
public partial class LayoutDescriptionViewModel : RoutableScreen
|
|
{
|
|
[Notify] private IEntryDetails? _entry;
|
|
|
|
public LayoutDescriptionViewModel(EntryReleaseInfoViewModel releaseInfoViewModel)
|
|
{
|
|
ReleaseInfoViewModel = releaseInfoViewModel;
|
|
ReleaseInfoViewModel.InDetailsScreen = false;
|
|
}
|
|
|
|
public EntryReleaseInfoViewModel ReleaseInfoViewModel { get; }
|
|
} |