mirror of
https://github.com/Gericom/EveryFileExplorer.git
synced 2025-06-19 01:15:36 -04:00
24 lines
495 B
C#
24 lines
495 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace LibEveryFileExplorer.IO.Serialization
|
|
{
|
|
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property, Inherited = true, AllowMultiple = false)]
|
|
public sealed class BinaryIgnoreAttribute : BinaryAttribute
|
|
{
|
|
readonly bool Ignore;
|
|
|
|
public BinaryIgnoreAttribute(bool Ignore = true)
|
|
{
|
|
this.Ignore = Ignore;
|
|
}
|
|
|
|
public override object Value
|
|
{
|
|
get { return Ignore; }
|
|
}
|
|
}
|
|
}
|