10 lines
205 B
C#

using System;
namespace GreenshotPlugin.Interop {
/// <summary>
/// Common properties that has appreared in almost all objects
/// </summary>
public interface ICommon : IDisposable {
}
}