PlaybackStartEventArgs.cs 310 B

12345678910111213141516
  1. #pragma warning disable CS1591
  2. using System;
  3. namespace Emby.Dlna.PlayTo
  4. {
  5. public class PlaybackStartEventArgs : EventArgs
  6. {
  7. public PlaybackStartEventArgs(UBaseObject mediaInfo)
  8. {
  9. MediaInfo = mediaInfo;
  10. }
  11. public UBaseObject MediaInfo { get; set; }
  12. }
  13. }