mirror of
https://github.com/denglihong2007/CRSim
synced 2026-08-15 01:46:17 +08:00
16 lines
558 B
C#
16 lines
558 B
C#
using CRSim.Core.Services;
|
|
using CRSim.Core.Models;
|
|
namespace CRSim.ScreenSimulator.ViewModels.FuzhouNan
|
|
{
|
|
public class TicketCheckScreenViewModel : ScreenViewModel
|
|
{
|
|
public TicketCheckScreenViewModel(ITimeService timeService, ISettingsService settingsService)
|
|
: base(timeService, settingsService)
|
|
{
|
|
Text = $"开车前{settingsService.GetSettings().StopCheckInAdvanceDuration.TotalMinutes}分钟停止检票";
|
|
ItemsPerPage = 6;
|
|
StationType = StationType.Departure;
|
|
}
|
|
}
|
|
}
|