props/MultiShop.Shop/Framework/IShop.cs

19 lines
461 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
2021-05-09 06:49:37 +00:00
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
namespace MultiShop.Shop.Framework
{
2021-05-09 06:49:37 +00:00
public interface IShop : IAsyncEnumerable<ProductListing>, IDisposable
{
string ShopName { get; }
string ShopDescription { get; }
string ShopModuleAuthor { get; }
2021-05-09 06:49:37 +00:00
public void SetupSession(string query, Currency currency);
void Initialize();
}
}