using System; public class FavoriteEventArgs : EventArgs { Favorite fav; public FavoriteEventArgs(Favorite fav) { this.fav = fav; } public Favorite RelatedFavorite { get { return fav; } } }