/** * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ /** * 인증된(로그인된) 사용자 정보 */ export interface MagAvatar { /** * 사용자명 * ex) 사이 */ name: string; /** * 사용자 직책명 * ex) 시스템 관리자 */ role: string; }