feat(interfaces): IReqEditUserData

This commit is contained in:
Mathis H (Avnyr) 2024-04-23 15:10:37 +02:00
parent 750e36e363
commit b48b34e4e5
Signed by: Mathis
GPG Key ID: DD9E0666A747D126

View File

@ -0,0 +1,6 @@
export interface IReqEditUserData {
firstName?: string;
lastName?: string;
displayName?: string;
password?: string;
}