Files
Kayori 755c047693 Platform, plugin & account UX improvements
- Refactor handler dispatch to use a parsed GameModel instead of raw
  model strings (Handler.cs, HandlerService.cs, new GameModel.cs)
- Add a Unity asset-extraction subsystem (Abstractions/Extractors/Unity)
- Add WriteEventLogHandler, XrpcDouble serialization type
- Rename EaCoin*Handler -> *EaCoinHandler for naming consistency
- Add PIN/username update and forgot/reset password flows, with a
  console-logging IEmailSender until real email is wired up
- Add a settings page and a theming pass (theme tokens, tailwind config)
- Add plugin nav/route/UI-manifest frontend types
2026-09-06 15:12:50 +02:00

12 lines
362 B
C#

namespace Abstractions.Extractors.Unity.Models;
/// <summary>Mirrors extract_streaming_info() - where an object's payload is streamed from on disk (e.g. resS files).</summary>
public record StreamingInfo
{
public long Offset { get; set; }
public long Size { get; set; }
public string Path { get; set; } = "";
public bool HasData => Size > 0;
}