feat: #123 添加北京南站站台主要看板

This commit is contained in:
denglihong2007
2025-05-31 23:21:27 +08:00
parent 18bb8746fa
commit e949fc55cd
7 changed files with 160 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
using CRSim.Core.Services;
namespace CRSim.ScreenSimulator.ViewModels.BeijingNan
{
public class PrimaryPlatformScreenViewModel : ScreenViewModel
{
public PrimaryPlatformScreenViewModel(ITimeService timeService, ISettingsService settingsService)
: base(timeService, settingsService)
{
ItemsPerPage = 1;
}
}
}