mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 07:07:19 +00:00
roles_and_permission
This commit is contained in:
6
lib/pages/roles_and_permission/model/role_model.dart
Normal file
6
lib/pages/roles_and_permission/model/role_model.dart
Normal file
@ -0,0 +1,6 @@
|
||||
class RoleModel {
|
||||
String? roleId;
|
||||
String? roleName;
|
||||
String? roleImage;
|
||||
RoleModel({this.roleId, this.roleName, this.roleImage});
|
||||
}
|
22
lib/pages/roles_and_permission/model/roles_user_model.dart
Normal file
22
lib/pages/roles_and_permission/model/roles_user_model.dart
Normal 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,
|
||||
});
|
||||
}
|
Reference in New Issue
Block a user