[Closes #11] Add moderateGroupChat function. Add ability to retrieve group ban list.

This commit is contained in:
Casper Warden
2020-01-05 19:05:52 +00:00
parent f145498abd
commit cbafbf0613
13 changed files with 280 additions and 156 deletions

9
lib/classes/GroupBan.ts Normal file
View File

@@ -0,0 +1,9 @@
import {UUID} from './UUID';
export class GroupBan
{
constructor(public AgentID: UUID, public BanDate: Date)
{
}
}