mirror of
https://github.com/denglihong2007/CRSim
synced 2026-05-14 23:55:36 +08:00
14 lines
423 B
C#
14 lines
423 B
C#
using CRSim.Core.Services;
|
|
namespace CRSim.ScreenSimulator.ViewModels.DaqingDong
|
|
{
|
|
public class PlatformScreenViewModel : ScreenViewModel
|
|
{
|
|
public PlatformScreenViewModel(ITimeService timeService, ISettingsService settingsService)
|
|
: base(timeService, settingsService)
|
|
{
|
|
ItemsPerPage = 1;
|
|
Text = $"请站在白色安全线以内排队候车";
|
|
}
|
|
}
|
|
}
|