mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-14 23:39:26 +00:00
12 lines
220 B
Plaintext
12 lines
220 B
Plaintext
include "TelegramMediaResource.fbs";
|
|
|
|
namespace TelegramCore;
|
|
|
|
table VideoThumbnail {
|
|
width:int32 (id: 0);
|
|
height:int32 (id: 1);
|
|
resource:TelegramMediaResource (id: 2, required);
|
|
}
|
|
|
|
root_type VideoThumbnail;
|