From 71cfc246427bd5bd91ac97972c6fe2b27fee759b Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Sat, 4 Sep 2010 13:26:12 +0100 Subject: [PATCH] [events] remove unneeded references --- SparkleLib/SparkleEvents.cs | 59 +++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 SparkleLib/SparkleEvents.cs diff --git a/SparkleLib/SparkleEvents.cs b/SparkleLib/SparkleEvents.cs new file mode 100644 index 00000000..abf4aee5 --- /dev/null +++ b/SparkleLib/SparkleEvents.cs @@ -0,0 +1,59 @@ +// SparkleShare, an instant update workflow to Git. +// Copyright (C) 2010 Hylke Bons +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . + +using System; + +namespace SparkleLib { + + // Arguments for most events + public class SparkleEventArgs : System.EventArgs { + + public string Type; + public string Message; + + + public SparkleEventArgs (string type) + { + + Type = type; + + } + + } + + + // Arguments for the NewCommit event + public class NewCommitArgs : System.EventArgs { + + + public string Author; + public string Email; + public string Message; + public string RepositoryName; + + public NewCommitArgs (string author, string email, string message, string repository_name) + { + + Author = author; + Email = email; + Message = message; + RepositoryName = repository_name; + + } + + } + +}