Files

9 lines
200 B
C#
Raw Permalink Normal View History

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