82112b6788
* Improve response writer * Add analyzers * Error on warnings in release mode * Disable doc warnings
13 lines
224 B
C#
13 lines
224 B
C#
#pragma warning disable CS1591
|
|
#pragma warning disable SA1600
|
|
|
|
using System;
|
|
|
|
namespace Emby.Dlna.PlayTo
|
|
{
|
|
public class PlaybackStartEventArgs : EventArgs
|
|
{
|
|
public uBaseObject MediaInfo { get; set; }
|
|
}
|
|
}
|