Пример #1
0
 public RemoveFriendshipTrustNotificationEventArgs(RemoveFriendshipTrustNotification notification)
 {
     Notification = notification;
 }
 public static bool Validate(RemoveFriendshipTrustNotification notification)
 {
     return(Validate((BaseNotification)notification) && notification.FriendUserId != null);
 }
        private void Dispatch(RemoveFriendshipTrustNotification notification)
        {
            RemoveFriendshipTrustNotificationEventArgs e = new RemoveFriendshipTrustNotificationEventArgs(notification);

            this.OnFriendshipTrustRemoved(this, e);
        }