16 lines
425 B
C#
16 lines
425 B
C#
using System;
|
|
using Aurora.Proto.Events;
|
|
|
|
namespace Aurora.Services.ClientService.Events
|
|
{
|
|
public delegate void NewMediaPlayingEventHandler(object sender, NewMediaPlayingEventArgs e);
|
|
|
|
public class NewMediaPlayingEventArgs
|
|
{
|
|
public NewMediaPlayingEvent Event { get; private set; }
|
|
public NewMediaPlayingEventArgs(BaseEvent e)
|
|
{
|
|
Event = e.NewMediaPlayingEvent;
|
|
}
|
|
}
|
|
} |