namespace Server; public class FieldOffsetAttribute : Attribute { public int Offset { get; set; } public int Size { get; set; } public FieldOffsetAttribute(int offset, int size) { Offset = offset; Size = size; } }