using System.Runtime.InteropServices; namespace LightlessSync.Services.CharaData.Models; [StructLayout(LayoutKind.Auto)] public readonly record struct CharacterAnalysisObjectSummary(int EntryCount, long TotalTriangles, long TexOriginalBytes, long TexCompressedBytes) { public bool HasEntries => EntryCount > 0; }