mirror of
https://github.com/denglihong2007/CRSim
synced 2026-05-12 22:22:10 +08:00
15 lines
506 B
C#
15 lines
506 B
C#
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; }
|
|
}
|
|
}
|