22 lines
253 B
TypeScript
Raw Normal View History

2023-09-10 15:17:34 +08:00
import Room from "../Room/Room";
2023-09-01 18:25:41 +08:00
/**
* User
*/
export default class User {
2023-09-02 22:33:40 +08:00
//#region User
2023-09-01 18:25:41 +08:00
2023-09-10 15:17:34 +08:00
public UserId: number = undefined;
public NickName: string = undefined;
2023-09-01 18:25:41 +08:00
//#endregion
2023-09-02 22:33:40 +08:00
//#region Room
2023-09-01 18:25:41 +08:00
2023-09-10 15:17:34 +08:00
public Room: Room = undefined;
2023-09-01 18:25:41 +08:00
//#endregion
}