mirror of
https://github.com/Gericom/EveryFileExplorer.git
synced 2025-06-19 01:15:36 -04:00
24 lines
538 B
C#
24 lines
538 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 BinaryByteArraySignatureAttribute : BinaryAttribute
|
|
{
|
|
readonly byte[] Signature;
|
|
|
|
public BinaryByteArraySignatureAttribute(params byte[] Signature)
|
|
{
|
|
this.Signature = Signature;
|
|
}
|
|
|
|
public override object Value
|
|
{
|
|
get { return Signature; }
|
|
}
|
|
}
|
|
}
|