1
0
mirror of https://gitlab.com/comunic/comunicapiv2 synced 2025-06-30 21:33:29 +00:00
Files
comunicapiv2/src/entities/NewGroup.ts
2019-12-24 18:47:55 +01:00

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
}