This repository has been archived on 2026-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
Intevel ツ 5d1c5f40d2 Created Ban Routes
Ban members works now
2021-02-21 13:44:58 +01:00

10 lines
172 B
TypeScript

export const BanCreateSchema = {
$delete_message_days: String,
$reason: String,
};
export interface BanCreateSchema {
delete_message_days?: string;
reason?: string;
}