mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-16 16:21:11 +00:00
12 lines
246 B
Plaintext
12 lines
246 B
Plaintext
namespace TelegramCore;
|
|
|
|
table RestrictionRule {
|
|
platform:string (id: 0, required);
|
|
reason:string (id: 1, required);
|
|
text:string (id: 2, required);
|
|
}
|
|
|
|
table PeerAccessRestrictionInfo {
|
|
rules:[RestrictionRule] (id: 0, required);
|
|
}
|