13 lines
254 B
C#
13 lines
254 B
C#
|
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;
|
|||
|
}
|
|||
|
}
|