feat: 集成化的窗口管理器

This commit is contained in:
denglihong2007
2025-08-02 20:29:19 +08:00
parent c0ce1bd31e
commit e69be43249
11 changed files with 175 additions and 75 deletions

View File

@@ -1,14 +0,0 @@
namespace CRSim.ScreenSimulator.Models
{
public class ScreenInfo
{
public required Guid SessionID { get; set; }
public required string SelectedStyle { get; set; }
public string? Text { get; set; }
public string? Video { get; set; }
public string? SelectedStationName { get; set; }
public string? SelectedTicketCheck { get; set; }
public string? SelectedPlatformName { get; set; }
public int? SelectedLoaction { get; set; }
}
}

View File

@@ -0,0 +1,17 @@
using CRSim.Core.Models;
namespace CRSim.ScreenSimulator.Models
{
public class Session
{
public required Guid ID { get; set; }
public required string StyleName { get; set; }
public required DateTime SimulateTime { get; set; }
public string? Text { get; set; }
public Uri? Video { get; set; }
public Station? Station { get; set; }
public string? TicketCheck { get; set; }
public string? PlatformName { get; set; }
public int? Loaction { get; set; }
}
}