9 lines
161 B
TypeScript
9 lines
161 B
TypeScript
import {Friend, RightsFlags} from '..';
|
|
|
|
export class FriendRightsEvent
|
|
{
|
|
friend: Friend;
|
|
myRights: RightsFlags;
|
|
theirRights: RightsFlags;
|
|
}
|