mirror of
https://github.com/denglihong2007/CRSim
synced 2026-08-11 12:15:35 +08:00
feat: 集成化的窗口管理器
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
17
CRSim.ScreenSimulator/Models/Session.cs
Normal file
17
CRSim.ScreenSimulator/Models/Session.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user