Files
SabreTools.Serialization/SabreTools.Data.Models/PortableExecutable/Resource/Entries/GenericResourceEntry.cs

14 lines
362 B
C#
Raw Normal View History

2026-02-12 16:55:27 -05:00
namespace SabreTools.Data.Models.PortableExecutable.Resource.Entries
{
/// <summary>
/// Generic or unparsed resource data
/// </summary>
2026-02-12 18:25:24 -05:00
public class GenericResourceEntry : ResourceDataType
2026-02-12 16:55:27 -05:00
{
/// <summary>
/// Unparsed byte data from the resource
/// </summary>
public byte[] Data { get; set; } = [];
}
}