10 lines
178 B
JavaScript
10 lines
178 B
JavaScript
//CSharpToJs: auto
|
|
class Group {
|
|
constructor() {
|
|
this.id = 0;
|
|
this.name = null;
|
|
this.userCount = 0;
|
|
this.isAssociatedToUser = false;
|
|
}
|
|
}
|
|
export default Group; |