11 lines
265 B
C#
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; }
|
||
|
}
|
||
|
}
|