mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-09 22:57:21 +00:00
23 lines
422 B
Dart
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,
|
|
});
|
|
}
|