mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-18 11:29:18 -07:00
10 lines
157 B
C#
10 lines
157 B
C#
|
using System;
|
|||
|
|
|||
|
namespace MediaBrowser.Dlna.PlayTo
|
|||
|
{
|
|||
|
public class CurrentIdEventArgs : EventArgs
|
|||
|
{
|
|||
|
public string Id { get; set; }
|
|||
|
}
|
|||
|
}
|