roles_and_permission

This commit is contained in:
mohammad
2024-12-12 19:00:51 +03:00
parent 7ee335ab1a
commit 56d4c34321
36 changed files with 2739 additions and 87 deletions

View File

@ -0,0 +1,22 @@
class RolesUserModel {
String? id;
String? userName;
String? userEmail;
String? userRole;
String? creationDate;
String? creationTime;
String? createdBy;
String? status;
String? action;
RolesUserModel(
{this.id,
this.userName,
this.userEmail,
this.userRole,
this.creationDate,
this.creationTime,
this.status,
this.action,
this.createdBy,
});
}