mirror of
https://github.com/denglihong2007/CRSim
synced 2026-05-15 08:05:41 +08:00
16 lines
456 B
C#
16 lines
456 B
C#
using CRSim.Core.Services;
|
|
using CRSim.Core.Models;
|
|
namespace CRSim.ScreenSimulator.ViewModels.Shanghai
|
|
{
|
|
public class OutsideScreenViewModel : ScreenViewModel
|
|
{
|
|
public OutsideScreenViewModel(ITimeService timeService, ISettingsService settingsService)
|
|
: base(timeService, settingsService)
|
|
{
|
|
ItemsPerPage = 9;
|
|
ScreenCount = 1;
|
|
StationType = StationType.Departure;
|
|
}
|
|
}
|
|
}
|