mirror of
https://github.com/denglihong2007/CRSim
synced 2026-05-15 08:05:41 +08:00
17 lines
458 B
C#
17 lines
458 B
C#
using CRSim.Core.Abstractions;
|
|
using CRSim.Core.Models;
|
|
using System.Windows.Threading;
|
|
|
|
namespace CRSim.ScreenSimulator.Abstractions
|
|
{
|
|
public interface IScreenViewModel
|
|
{
|
|
ITimeService TimeService { get; }
|
|
Dispatcher UIDispatcher { get; set; }
|
|
void LoadData(Station station, string ticketCheck, string platform);
|
|
string? Text { get; set; }
|
|
Uri Video { get; set; }
|
|
int Location { get; set; }
|
|
}
|
|
}
|