mirror of
https://github.com/greenshot/greenshot
synced 2025-07-13 16:43:54 -07:00
Code formatting (indents etc.) to get it consistent, simplify it for contributors.
This commit is contained in:
parent
726644de99
commit
e8c0b307ee
435 changed files with 46647 additions and 39014 deletions
|
@ -18,18 +18,23 @@
|
|||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
namespace GreenshotPlugin.Core {
|
||||
[AttributeUsage(AttributeTargets.Field)]
|
||||
public sealed class DisplayKeyAttribute : Attribute {
|
||||
public string Value { get; }
|
||||
namespace GreenshotPlugin.Core
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Field)]
|
||||
public sealed class DisplayKeyAttribute : Attribute
|
||||
{
|
||||
public string Value { get; }
|
||||
|
||||
public DisplayKeyAttribute(string v) {
|
||||
Value = v;
|
||||
}
|
||||
|
||||
public DisplayKeyAttribute() {
|
||||
}
|
||||
}
|
||||
}
|
||||
public DisplayKeyAttribute(string v)
|
||||
{
|
||||
Value = v;
|
||||
}
|
||||
|
||||
public DisplayKeyAttribute()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue