mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 07:07:19 +00:00
7 lines
138 B
Dart
7 lines
138 B
Dart
class RoleModel {
|
|
String? roleId;
|
|
String? roleName;
|
|
String? roleImage;
|
|
RoleModel({this.roleId, this.roleName, this.roleImage});
|
|
}
|