PlayingState.cs 254 B

12345678910111213
  1. namespace LyricShow.WebInterop
  2. {
  3. public class PlayingState
  4. {
  5. public string Album { get; set; }
  6. public string Artist { get; set; }
  7. public string Title { get; set; }
  8. public int PositionMs { get; set; }
  9. }
  10. }