continuity/Server/FieldOffsetAttribute.cs

13 lines
254 B
C#
Raw Normal View History

2023-08-09 20:14:14 +02:00
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;
}
}