@bitzonegaming/roleplay-engine-sdk
Version:
Roleplay Engine SDK
32 lines (31 loc) • 456 B
TypeScript
/**
*
* @export
* @interface AccountBan
*/
export interface AccountBan {
/**
*
* @type {string}
* @memberof AccountBan
*/
reason: string;
/**
*
* @type {number}
* @memberof AccountBan
*/
date: number;
/**
*
* @type {number}
* @memberof AccountBan
*/
endDate: number;
/**
*
* @type {string}
* @memberof AccountBan
*/
executorUser: string;
}