Widow – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2  
3 namespace Widow
4 {
5 public class DesktopWindow
6 {
7 #region Public Enums, Properties and Fields
8  
9 public IntPtr Handle { get; set; }
10  
11 public string Title { get; set; }
12  
13 #endregion
14  
15 #region Constructors, Destructors and Finalizers
16  
17 public DesktopWindow(IntPtr handle, string title)
18 {
19 Handle = handle;
20 Title = title;
21 }
22  
23 #endregion
24 }
25 }