using System;
namespace MediaBrowser.Server.Implementations.Udp
{
    /// 
    /// Class UdpMessageReceivedEventArgs
    /// 
    public class UdpMessageReceivedEventArgs : EventArgs
    {
        /// 
        /// Gets or sets the bytes.
        /// 
        /// The bytes.
        public byte[] Bytes { get; set; }
        /// 
        /// Gets or sets the remote end point.
        /// 
        /// The remote end point.
        public string RemoteEndPoint { get; set; }
    }
}