mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
21 lines
528 B
C#
21 lines
528 B
C#
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<BrandedViewModelBase> logger)
|
|
: base(brandingProvider, dispatcher, logger)
|
|
{
|
|
}
|
|
}
|