10 lines
225 B
TypeScript
10 lines
225 B
TypeScript
import { Friend } from '../classes/public/Friend';
|
|
import { RightsFlags } from '../enums/RightsFlags';
|
|
|
|
export class FriendRightsEvent
|
|
{
|
|
friend: Friend;
|
|
myRights: RightsFlags;
|
|
theirRights: RightsFlags;
|
|
}
|