mirror of
https://github.com/Gericom/EveryFileExplorer.git
synced 2025-06-19 01:15:36 -04:00
25 lines
515 B
C#
25 lines
515 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace LibEveryFileExplorer.ComponentModel
|
|
{
|
|
[AttributeUsage(AttributeTargets.Property, Inherited = true, AllowMultiple = false)]
|
|
public sealed class HexReversedAttribute : Attribute
|
|
{
|
|
readonly bool hexReversed;
|
|
|
|
// This is a positional argument
|
|
public HexReversedAttribute(bool hexReversed = true)
|
|
{
|
|
this.hexReversed = hexReversed;
|
|
}
|
|
|
|
public bool HexReversed
|
|
{
|
|
get { return hexReversed; }
|
|
}
|
|
}
|
|
}
|