mirror of
https://github.com/greenshot/greenshot
synced 2025-07-15 09:33:46 -07:00
git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@2250 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
11 lines
253 B
C#
11 lines
253 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 Common : IDisposable {
|
|
}
|
|
}
|