14 lines
322 B
C#
14 lines
322 B
C#
|
|
using Wino.Core.Domain.Interfaces;
|
||
|
|
|
||
|
|
namespace Wino.Core.ViewModels;
|
||
|
|
|
||
|
|
public class WelcomeHostPageViewModel : CoreBaseViewModel
|
||
|
|
{
|
||
|
|
public WelcomeHostPageViewModel(INavigationService navigationService)
|
||
|
|
{
|
||
|
|
NavigationService = navigationService;
|
||
|
|
}
|
||
|
|
|
||
|
|
public INavigationService NavigationService { get; }
|
||
|
|
}
|