mirror of
https://gitlab.com/comunic/comunicapiv2
synced 2025-02-22 16:51:18 +00:00
23 lines
294 B
TypeScript
23 lines
294 B
TypeScript
|
/**
|
||
|
* New group information
|
||
|
*
|
||
|
* @author Pierre HUBERT
|
||
|
*/
|
||
|
|
||
|
export interface NewGroup {
|
||
|
|
||
|
/**
|
||
|
* The name of the group to create
|
||
|
*/
|
||
|
name: string,
|
||
|
|
||
|
/**
|
||
|
* The ID of the user creating the group
|
||
|
*/
|
||
|
userID: number,
|
||
|
|
||
|
/**
|
||
|
* The time of creation of the group
|
||
|
*/
|
||
|
timeCreate: number
|
||
|
}
|