Files
telegram-bot/modules/Destiny2.WhereIsXur/Provider/IXurPlaceProvider.cs
T

10 lines
222 B
C#
Raw Normal View History

2020-03-09 20:12:03 +04:00
using System.Threading.Tasks;
namespace Kruzya.TelegramBot.Destiny2.WhereIsXur.Provider
{
public interface IXurPlaceProvider
{
public Task<string> GetPlaceAsync();
public string GetPlace();
}
}