Project

General

Profile

1
import { Right } from './right.interface';
2
import { IPowerClient } from './ipower-client.interface';
3

    
4
export interface RightsByClient {
5
  client: IPowerClient;
6
  rights: Right[];
7
}
(38-38/50)