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

36 lines
567 B
TypeScript

/* tslint:disable */
/* eslint-disable */
/* Code generated by ng-openapi-gen DO NOT EDIT. */
export interface GetRolesResDto {
/**
* Identifier of the associated account
*/
accountId: number;
/**
* Unique identifier for the role record
*/
id: number;
/**
* Human-readable name of the role
*/
role: string;
/**
* Code representing the role
*/
roleCode: string;
/**
* Identifier of the role assigned to the account
*/
roleId: number;
/**
* Username of the account with this role
*/
username: string;
}