using Remotely.Desktop.Shared.Abstractions; using Microsoft.Extensions.Logging; using Desktop.Shared.Services; namespace Remotely.Desktop.UI.ViewModels; public interface IMainWindowViewModel : IBrandedViewModelBase { } public class MainWindowViewModel : BrandedViewModelBase, IMainWindowViewModel { public MainWindowViewModel( IBrandingProvider brandingProvider, IUiDispatcher dispatcher, ILogger logger) : base(brandingProvider, dispatcher, logger) { } }