mirror of
https://github.com/xivdev/EXDSchema.git
synced 2025-06-06 16:17:46 +00:00
9 lines
No EOL
215 B
C#
9 lines
No EOL
215 B
C#
namespace SchemaConverter;
|
|
|
|
public class DetectedArraySpecs
|
|
{
|
|
public int Count;
|
|
public int StartOffset { get; set; }
|
|
public int EndOffset { get; set; }
|
|
public List<ColumnInfo> Members { get; set; } = new();
|
|
} |