superstar_v2/DualScreenDemo.Shared.cs

11 lines
265 B
C#
Raw Permalink Normal View History

2025-06-20 13:12:10 +08:00
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; }
}
}