Changeset - 7fae58ff4646
[Not reviewed]
default
0 0 1
Jason Maltzen (jmaltzen) - 8 years ago 2016-03-04 05:35:56
jason.maltzen@unsanctioned.net
Add missed file
1 file changed with 14 insertions and 0 deletions:
0 comments (0 inline, 0 general)
StatusUpdateEventArgs.cs
Show inline comments
 
new file 100644
 
using System;
 

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

	
0 comments (0 inline, 0 general)