view Chronosv2/source/SingleInstanceEventArgs.cs @ 19:09d18d6e5f40

airport work
author stevenh7776 stevenhollidge@hotmail.com
date Thu, 15 Mar 2012 06:59:15 +0000
parents 741981715d94
children
line wrap: on
line source

using System;
using System.Collections.Generic;

namespace Chronos
{
    public sealed class SingleInstanceEventArgs 
        : EventArgs
    {
        #region · Properties ·

        public IList<string> Args
        {
            get;
            internal set;
        }

        #endregion

        #region · Constructors ·

        public SingleInstanceEventArgs()
        {
        }

        #endregion
    }
}