Files @ 71187b16188a
Branch filter:

Location: ATITD-Tools/Desert-Paint-Lab/StatusUpdateEventArgs.cs - annotation

jmaltzen
Added tag VERSION_T8_RC6 for changeset 46b3b97a9901
using System;

namespace DesertPaintLab
{
    public class StatusUpdateEventArgs : System.EventArgs
    {
        public string Status { get; private set; }
        public StatusUpdateEventArgs(string status)
        {
            Status = status;
        }
    }
}