Files
telegram-bot/modules/Destiny2.WhereIsXur/Provider/IXurPlaceProvider.cs
T
2020-03-09 20:12:03 +04:00

10 lines
222 B
C#

using System.Threading.Tasks;
namespace Kruzya.TelegramBot.Destiny2.WhereIsXur.Provider
{
public interface IXurPlaceProvider
{
public Task<string> GetPlaceAsync();
public string GetPlace();
}
}