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

27 lines
507 B
TypeScript

/* tslint:disable */
/* eslint-disable */
/* Code generated by ng-openapi-gen DO NOT EDIT. */
export interface CreateAccountDto {
/**
* First name of the user. This field is optional and can be null.
*/
firstName?: string | null;
/**
* Last name of the user. This field is optional and can be null.
*/
lastName?: string | null;
/**
* Role assigned to the account.
* @type number
*/
roleId: number;
/**
* Unique username for the account.
*/
username: string;
}