qstbak/LLib/LLib.Shop/NpcPositionCacheOptions.cs
2026-08-17 20:29:32 +10:00

12 lines
239 B
C#

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;
}