mirror of
https://github.com/greenshot/greenshot
synced 2025-07-16 10:03:44 -07:00
11 lines
254 B
C#
11 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 {
|
|
}
|
|
}
|