2021-04-23 15:11:49 -05:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
2021-05-09 01:49:37 -05:00
|
|
|
using System.Net.Http;
|
|
|
|
using System.Threading;
|
2021-04-23 15:11:49 -05:00
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
2021-05-21 13:32:25 -05:00
|
|
|
namespace MultiShop.Shop.Framework
|
2021-04-23 15:11:49 -05:00
|
|
|
{
|
2021-05-09 01:49:37 -05:00
|
|
|
public interface IShop : IAsyncEnumerable<ProductListing>, IDisposable
|
2021-04-23 15:11:49 -05:00
|
|
|
{
|
|
|
|
string ShopName { get; }
|
|
|
|
string ShopDescription { get; }
|
|
|
|
string ShopModuleAuthor { get; }
|
2021-05-09 01:49:37 -05:00
|
|
|
|
|
|
|
public void SetupSession(string query, Currency currency);
|
|
|
|
|
|
|
|
void Initialize();
|
2021-04-23 15:11:49 -05:00
|
|
|
}
|
|
|
|
}
|