1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-11-27 05:34:42 +01:00

Update Banned.php

This commit is contained in:
Daniil Gentili 2023-08-30 14:47:02 +02:00 committed by GitHub
parent e5ce171a5e
commit 349cdafdaf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,7 +35,7 @@ final class Banned extends Participant
public readonly int $kickedBy;
/** When did the user join the group */
public readonly ?int $date;
public readonly int $date;
/** Banned [rights](https://core.telegram.org/api/rights) */
public readonly BannedRights $bannedRights;
@ -51,4 +51,4 @@ final class Banned extends Participant
$this->date = $rawParticipant['date'];
$this->bannedRights = new BannedRights($rawParticipant['banned_rights']);
}
}
}