22 lines
436 B
C#
22 lines
436 B
C#
using OrpaonEMS.App.Services;
|
|
using OrpaonEMS.Core;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OrpaonEMS.App.ViewModels
|
|
{
|
|
public class FFViewModel : NavigationViewModel
|
|
{
|
|
public FFViewModel(FFService fFService)
|
|
{
|
|
FFServiceData = fFService;
|
|
}
|
|
|
|
|
|
public FFService FFServiceData { get; set; }
|
|
}
|
|
}
|