Changes for directories
[pithos-ms-client] / trunk / Pithos.Client.WPF / Shell / Notification.cs
1 using System.Diagnostics;
2
3 namespace Pithos.Client.WPF
4 {
5     public class Notification
6     {
7         public string Title { get; set; }
8         public string Message { get; set; }
9         public TraceLevel Level { get; set; }
10     }
11     
12 }