12 lines
239 B
C#
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;
|
|
}
|