19 lines
397 B
C#
19 lines
397 B
C#
using SptCommon.Annotations;
|
|
using Core.Models.Eft.Ragfair;
|
|
|
|
namespace Core.Services;
|
|
|
|
[Injectable(InjectionType.Singleton)]
|
|
public class RagfairRequiredItemsService
|
|
{
|
|
public List<RagfairOffer> GetRequiredItemsById(string searchId)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void BuildRequiredItemTable()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|