mirror of
https://github.com/greenshot/greenshot.git
synced 2025-01-10 07:42:47 -08:00
10 lines
199 B
C#
10 lines
199 B
C#
using System;
|
|
|
|
namespace Greenshot.Interop {
|
|
/// <summary>
|
|
/// Common properties that has appreared in almost all objects
|
|
/// </summary>
|
|
public interface ICommon : IDisposable {
|
|
}
|
|
}
|