mirror of
https://github.com/Bubuni-Team/telegram-bot.git
synced 2026-07-31 00:29:24 +03:00
9 lines
220 B
C#
9 lines
220 B
C#
|
|
using West.TelegramBot.CodeWatcher.Dto;
|
||
|
|
|
||
|
|
namespace West.TelegramBot.CodeWatcher.Service;
|
||
|
|
|
||
|
|
public interface IHasteService
|
||
|
|
{
|
||
|
|
public Task<HasteResponse> PostDocumentAsync(string data);
|
||
|
|
public Uri GetHasteUri();
|
||
|
|
}
|