mirror of
https://github.com/greenshot/greenshot.git
synced 2025-01-09 15:23:03 -08:00
10 lines
205 B
C#
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 {
|
|
}
|
|
}
|