15 lines
322 B
C#
15 lines
322 B
C#
using System;
|
|
|
|
namespace Plane.Copters
|
|
{
|
|
public class DataStreamReceivedEventArgs : EventArgs
|
|
{
|
|
public DataStreamReceivedEventArgs(DataStreamType dataStreamType)
|
|
{
|
|
DataStreamType = dataStreamType;
|
|
}
|
|
|
|
public DataStreamType DataStreamType { get; private set; }
|
|
}
|
|
}
|