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