123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- using System;
- namespace Edge.Core.Parser.BinaryParser.Attributes
- {
- public class AttributeBase : Attribute
- {
-
-
-
- public int Index { get; protected set; }
-
-
-
- public EncodingType EncodingType { get; set; }
-
-
-
- public string LengthOrCountLink { get; protected set; }
-
-
-
- public int FixedLengthOrCount { get; protected set; }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public string LengthOrCountLinkExpression { get; protected set; }
- }
- }
|