Winify – Rev 28

Subversion Repositories:
Rev:
using System;
using System.Drawing;

namespace Winify.Gotify
{
    public class GotifyNotificationEventArgs : EventArgs
    {
        #region Constructors, Destructors and Finalizers

        public GotifyNotificationEventArgs(GotifyNotification notification, Image image)
        {
            Notification = notification;
            Image = image;
        }

        #endregion

        #region Public Enums, Properties and Fields

        public GotifyNotification Notification { get; set; }

        public Image Image { get; set; }

        #endregion
    }
}

Generated by GNU Enscript 1.6.5.90.