mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-29 06:21:56 +01:00
10 lines
172 B
C#
10 lines
172 B
C#
using System;
|
|
|
|
namespace MediaBrowser.Dlna.PlayTo
|
|
{
|
|
public class TransportStateEventArgs : EventArgs
|
|
{
|
|
public TRANSPORTSTATE State { get; set; }
|
|
}
|
|
}
|