27 lines
437 B
TypeScript
27 lines
437 B
TypeScript
/* tslint:disable */
|
|
/* eslint-disable */
|
|
/* Code generated by ng-openapi-gen DO NOT EDIT. */
|
|
|
|
export interface FindRoleResDto {
|
|
/**
|
|
* Detailed description of the role
|
|
* Can be null
|
|
*/
|
|
description: string | null;
|
|
|
|
/**
|
|
* Unique identifier for the role
|
|
*/
|
|
id: number;
|
|
|
|
/**
|
|
* Standard code representing the role
|
|
*/
|
|
standardCode: string;
|
|
|
|
/**
|
|
* Standard name of the role
|
|
*/
|
|
standardName: string;
|
|
}
|