Modified Example

This commit is contained in:
sta
2014-03-11 16:41:43 +09:00
parent e233e3def3
commit 9a22fb4235
4 changed files with 174 additions and 130 deletions

View File

@@ -0,0 +1,28 @@
using System;
namespace Example
{
internal class NotificationMessage
{
public 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);
}
}
}