Toasts – Blame information for rev 27

Subversion Repositories:
Rev:
Rev Author Line No. Line
27 office 1 using System;
2 using System.Collections.Generic;
3 using System.Drawing;
4 using System.Linq;
5 using System.Text;
6 using System.Threading.Tasks;
7  
8 namespace Toasts
9 {
10 public class ToastDisplayData
11 {
12 public string Title { get; set; }
13 public string Body { get; set; }
14 public bool EnableChime { get; set; }
15 public byte[] Chime { get; set; }
16 public int LingerTime { get; set; }
17 public Image Image { get; set; }
18 public string Content { get; set; }
19 }
20 }