5 lines
237 B
C#
5 lines
237 B
C#
using System.Numerics;
|
|
|
|
namespace LLib.Shop.Model;
|
|
|
|
public sealed record ShopSearchResult(uint ShopId, uint NpcId, ushort TerritoryId, Vector3 NpcPosition, EShopType ShopType, uint Price, uint CurrencyItemId, int DialogOptionIndex = 0);
|