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