superstar_v2/DualScreenDemo.Shared.cs
2025-06-20 13:12:10 +08:00

11 lines
265 B
C#

namespace DualScreenDemo.Shared
{
public class VideoStatus
{
public bool IsGraphOk { get; set; }
public string LastError { get; set; }
public double PositionSeconds { get; set; }
public string PlayState { get; set; }
}
}