// -----------------------------------------------------------------------
//
// Copyright 2014 MIT Licence. See licence.md for more information.
//
// -----------------------------------------------------------------------
namespace Perspex.Platform
{
using System;
///
/// Represents a platform-specific handle.
///
public interface IPlatformHandle
{
///
/// Gets the handle.
///
IntPtr Handle { get; }
///
/// Gets an optional string that describes what represents.
///
string HandleDescriptor { get; }
}
}