17 lines
330 B
C#
17 lines
330 B
C#
using Core.Models.Eft.Ragfair;
|
|
|
|
namespace Core.Services;
|
|
|
|
public class RagfairRequiredItemsService
|
|
{
|
|
public List<RagfairOffer> GetRequiredItemsById(string searchId)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void BuildRequiredItemTable()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|