15 lines
288 B
C#
15 lines
288 B
C#
using System;
|
|
|
|
namespace PlaneGcsSdk.Contract.EhNetUWP
|
|
{
|
|
public class StartSendFileEventArgs : EventArgs
|
|
{
|
|
public StartSendFileEventArgs(int streamindex)
|
|
{
|
|
StreamIndex = streamindex;
|
|
}
|
|
|
|
public int StreamIndex { get; set; }
|
|
}
|
|
}
|