mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-20 00:16:37 +08:00
11 lines
199 B
TypeScript
11 lines
199 B
TypeScript
export interface OnlineUser {
|
|
connnectionId?: string;
|
|
userId?: string;
|
|
userName?: string;
|
|
loginTime: number;
|
|
ipaddr?: string;
|
|
loginLocation?: string;
|
|
os?: string;
|
|
browser?: string;
|
|
}
|