[store] kitties now have own http client factory

This commit is contained in:
Andriy
2023-07-28 22:44:51 +03:00
parent 462f3c9836
commit c19696b360
8 changed files with 79 additions and 30 deletions
@@ -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;
}
}