Toasts – Blame information for rev 41

Subversion Repositories:
Rev:
Rev Author Line No. Line
41 office 1 // =====COPYRIGHT=====
2 // Copyright 2007 - 2011 Service Repair Solutions, Inc.
3 // =====COPYRIGHT=====
4 using System.Drawing;
5  
6 namespace Mpi.Edge.ShopFlagNotifier
7 {
8 public class NotificationInfo
9 {
10 public string Title { get; set; }
11 public string RoInfo { get; set; }
12 public string Updated { get; set; }
13 public Image Icon { get; set; }
14 public Color Color { get; set; }
15 public int Duration { get; set; }
16  
17 public NotificationInfo(string title, string roInfo, string updated, Image icon, Color color, int duration)
18 {
19 this.Title = title;
20 this.RoInfo = roInfo;
21 this.Updated = updated;
22 this.Icon = icon;
23 this.Color = color;
24 this.Duration = duration;
25 }
26  
27 public NotificationInfo()
28 {
29 }
30 }
31 }