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