1
0
mirror of https://gitlab.com/comunic/comunicapiv2 synced 2025-02-22 16:51:18 +00:00
comunicapiv2/src/entities/NewGroup.ts

23 lines
294 B
TypeScript
Raw Normal View History

2019-12-24 18:47:55 +01:00
/**
* 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
}