Files
telegram-bot/modules/Destiny2.WhereIsXur/Provider/IXurPlaceProvider.cs
T
2023-07-29 15:14:52 +03:00

9 lines
200 B
C#

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