using System; namespace PlaneGcsSdk.Contract.EhNetUWP { public class DiscoveredOneUserEventArgs : EventArgs { public DiscoveredOneUserEventArgs(UserProperty userpro) { userproperty = userpro; } public UserProperty userproperty { get; set; } } }