22 lines
445 B
TypeScript
22 lines
445 B
TypeScript
/**
|
|
* PyroFetes
|
|
*
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
|
|
export interface GetStaffDto {
|
|
id?: number;
|
|
firstName?: string | null;
|
|
lastName?: string | null;
|
|
profession?: string | null;
|
|
email?: string | null;
|
|
f4T2NumberApproval?: string | null;
|
|
f4T2ExpirationDate?: Date | null;
|
|
}
|
|
|