Modified Example1

This commit is contained in:
sta
2014-03-12 20:23:37 +09:00
parent 9a22fb4235
commit f068425b10
7 changed files with 292 additions and 289 deletions

View File

@@ -0,0 +1,24 @@
using System;
namespace Example1
{
internal class NotificationMessage
{
public string Body {
get; set;
}
public string Icon {
get; set;
}
public string Summary {
get; set;
}
public override string ToString ()
{
return String.Format ("{0}: {1}", Summary, Body);
}
}
}