using System; namespace Widow { public class DesktopWindow { #region Public Enums, Properties and Fields public IntPtr Handle { get; set; } public string Title { get; set; } #endregion #region Constructors, Destructors and Finalizers public DesktopWindow(IntPtr handle, string title) { Handle = handle; Title = title; } #endregion } }