2020-01-06 12:10:40 +00:00
|
|
|
import { Friend } from '../classes/public/Friend';
|
|
|
|
|
import { RightsFlags } from '../enums/RightsFlags';
|
2018-10-12 14:34:43 +01:00
|
|
|
|
|
|
|
|
export class FriendRightsEvent
|
|
|
|
|
{
|
|
|
|
|
friend: Friend;
|
|
|
|
|
myRights: RightsFlags;
|
|
|
|
|
theirRights: RightsFlags;
|
|
|
|
|
}
|