Files
SPT-Server-Build/Core/Services/TraderAssortService.cs
T
2025-01-09 19:26:55 +00:00

22 lines
579 B
C#

using Core.Models.Eft.Common.Tables;
namespace Core.Services;
public class TraderAssortService
{
public TraderAssort GetPristineTraderAssort(string traderId)
{
throw new NotImplementedException();
}
/// <summary>
/// Store trader assorts inside a class property
/// </summary>
/// <param name="traderId">Traderid to store assorts against</param>
/// <param name="assort">Assorts to store</param>
public void SetPristineTraderAssort(string traderId, TraderAssort assort)
{
throw new NotImplementedException();
}
}