21 lines
457 B
C#
21 lines
457 B
C#
using FATrace.WPLApp.Core;
|
|
using FATrace.WPLApp.Services;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FATrace.WPLApp.ViewModels
|
|
{
|
|
public class HeadViewModel : NavigationViewModel
|
|
{
|
|
public HeadViewModel(SysRunService sysRunService)
|
|
{
|
|
SysRunService = sysRunService;
|
|
}
|
|
|
|
public SysRunService SysRunService { get; }
|
|
}
|
|
}
|