using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Newtonsoft.Json; namespace ScriptTool { public class FixedStringCollection { public int StringsLocation { get; set; } public IList TablePointers { get; set; } public int NumEntries { get; set; } public int EntryLength { get; set; } public IList StringRefs { get; set; } } }