Browser-Strutture-Musa/src/api/models/find-role-res-dto.ts
2025-11-13 14:03:34 +01:00

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;
}