feat: #162 新增沈阳北站站台看板

This commit is contained in:
denglihong2007
2025-06-01 12:31:23 +08:00
parent e949fc55cd
commit 9ef4612c83
8 changed files with 102 additions and 2 deletions

View File

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