mirror of
https://github.com/Bubuni-Team/telegram-bot.git
synced 2026-07-31 00:29:24 +03:00
[store] kitties now have own http client factory
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
namespace West.TelegramBot.ContentStore.Model;
|
||||
|
||||
public class KittiesResponse
|
||||
{
|
||||
public Stream Content { get; set; }
|
||||
public string Source { get; set; }
|
||||
public string Title { get; set; }
|
||||
|
||||
public KittiesResponse(Stream content, string source, string title)
|
||||
{
|
||||
Content = content;
|
||||
Source = source;
|
||||
Title = title;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user