10 lines
255 B
TypeScript
10 lines
255 B
TypeScript
import { Avatar } from './Avatar';
|
|
import { RightsFlags } from '../../enums/RightsFlags';
|
|
|
|
export class Friend extends Avatar
|
|
{
|
|
online: boolean;
|
|
theirRights: RightsFlags = RightsFlags.None;
|
|
myRights: RightsFlags = RightsFlags.None;
|
|
}
|