mirror of
https://github.com/Bubuni-Team/telegram-bot.git
synced 2026-07-31 00:29:24 +03:00
15 lines
360 B
C#
15 lines
360 B
C#
|
|
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;
|
||
|
|
}
|
||
|
|
}
|