jellyfin/Emby.Dlna/PlayTo/CurrentIdEventArgs.cs

10 lines
157 B
C#
Raw Normal View History

2016-10-29 15:22:20 -07:00
using System;
namespace MediaBrowser.Dlna.PlayTo
{
public class CurrentIdEventArgs : EventArgs
{
public string Id { get; set; }
}
}