using Telegram.Bot.Types.Enums; using Telegram.Bot.Types.InputFiles; namespace West.TelegramBot.ContentStore.Model; public class RandomMedia { public RandomMedia(InputOnlineFile file, string? caption = null) { File = file; Caption = caption; } public InputOnlineFile File; public string? Caption; public InputMediaType Type { get; set; } = InputMediaType.Photo; }