12 lines
254 B
C#

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