Toasts – Diff between revs 1 and 41

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