using System.Collections.Generic; namespace SabreTools.Data.Models.PortableExecutable.Resource.Entries { /// /// Represents a string table resource /// public sealed class StringTableResource : ResourceDataType { /// /// Set of integer-keyed values /// public Dictionary Data { get; set; } = []; } }