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