mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-09-22 16:25:10 +00:00
10 lines
423 B
C#
10 lines
423 B
C#
using Daybreak.Services.Privilege;
|
|
using Daybreak.Shared.Services.ApplicationLauncher;
|
|
using TrailBlazr.Services;
|
|
|
|
namespace Daybreak.Views;
|
|
public class RequestDelevationViewModel(IViewManager viewManager, IApplicationLauncher applicationLauncher, PrivilegeContext privilegeContext)
|
|
: ElevationViewModelBase<RequestDelevationViewModel, RequestDelevationView>(viewManager, applicationLauncher, privilegeContext)
|
|
{
|
|
}
|