wasStitchNET – Blame information for rev 13

Subversion Repositories:
Rev:
Rev Author Line No. Line
13 office 1 ///////////////////////////////////////////////////////////////////////////
2 // Copyright (C) Wizardry and Steamworks 2017 - License: GNU GPLv3 //
3 // Please see: http://www.gnu.org/licenses/gpl.html for legal details, //
4 // rights of fair usage, the disclaimer and warranty conditions. //
5 ///////////////////////////////////////////////////////////////////////////
6  
7 using System;
8  
9 namespace wasStitchNET.Repository.Stitching
10 {
11 public class StitchProgressEventArgs : EventArgs
12 {
13 public StitchProgressEventArgs(string status)
14 {
15 Status = status;
16 }
17  
18 public string Status { get; }
19 }
20 }