using System; namespace LLib.Shop; public sealed record NpcPositionCacheOptions { public string? CacheDirectory { get; init; } public string? GameVersion { get; init; } public TimeSpan ScanThrottle { get; init; } = TimeSpan.Zero; }