view Chronosv2/source/DragAndDrop/IDataDropObject.cs @ 25:81f9b72a44ce

Tidy up
author adminsh@apollo
date Tue, 20 Mar 2012 21:22:00 +0000
parents 443821e55f06
children
line wrap: on
line source

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Chronos.Presentation.DragAndDrop
{
    public interface IDataDropObject
    {
        #region · Methods ·

        object GetData();

        #endregion
    }
}