Files
syncrow-web/lib/pages/roles_and_permission/model/roles_user_model.dart
2024-12-12 19:00:51 +03:00

23 lines
422 B
Dart

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,
});
}