15 lines
305 B
C#
15 lines
305 B
C#
|
using System;
|
|||
|
|
|||
|
namespace PlaneGcsSdk.Contract.EhNetUWP
|
|||
|
{
|
|||
|
public class UserStateChangeEventArgs : EventArgs
|
|||
|
{
|
|||
|
public UserStateChangeEventArgs(UserProperty friendinfo)
|
|||
|
{
|
|||
|
FriendInfo = friendinfo;
|
|||
|
}
|
|||
|
|
|||
|
public UserProperty FriendInfo { get; set; }
|
|||
|
}
|
|||
|
}
|