10 lines
164 B
C#
10 lines
164 B
C#
|
using System;
|
|||
|
|
|||
|
namespace MediaBrowser.Dlna.PlayTo
|
|||
|
{
|
|||
|
public class TransportStateEventArgs : EventArgs
|
|||
|
{
|
|||
|
public bool Stopped { get; set; }
|
|||
|
}
|
|||
|
}
|