mirror of
https://github.com/denglihong2007/CRSim
synced 2026-05-13 22:55:56 +08:00
18 lines
545 B
C#
18 lines
545 B
C#
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 TicketCheck? TicketCheck { get; set; }
|
|
public string? PlatformName { get; set; }
|
|
public int? Loaction { get; set; }
|
|
}
|
|
}
|