Files

9 lines
220 B
C#
Raw Permalink Normal View History

2023-07-28 16:53:01 +03:00
using West.TelegramBot.CodeWatcher.Dto;
namespace West.TelegramBot.CodeWatcher.Service;
public interface IHasteService
{
public Task<HasteResponse> PostDocumentAsync(string data);
public Uri GetHasteUri();
}