Statistics
| Branch: | Revision:

root / trunk / Pithos.Client.WPF / Shell / Notification.cs @ d53bbdf0

History | View | Annotate | Download (237 Bytes)

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
}