19 lines
461 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
2021-05-09 01:49:37 -05:00
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
namespace MultiShop.Shop.Framework
{
2021-05-09 01:49:37 -05:00
public interface IShop : IAsyncEnumerable<ProductListing>, IDisposable
{
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();
}
}