mirror of
https://github.com/greenshot/greenshot.git
synced 2025-01-26 07:02:50 -08:00
12 lines
254 B
C#
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 {
|
|
}
|
|
}
|