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