second commit

This commit is contained in:
Anbarasu
2026-05-27 10:35:09 +05:30
parent c53794c04c
commit 1435ac47b0
501 changed files with 52818 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
class UserUpdateRequest {
int? userid;
String? authname;
int? configid;
String? contactno;
String? firstname;
String? lastname;
String? email;
UserUpdateRequest(
{this.userid,
this.authname,
this.configid,
this.contactno,
this.firstname,
this.lastname,
this.email});
UserUpdateRequest.fromJson(Map<String, dynamic> json) {
userid = json['userid'];
authname = json['authname'];
configid = json['configid'];
contactno = json['contactno'];
firstname = json['firstname'];
lastname = json['lastname'];
email = json['email'];
}
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = new Map<String, dynamic>();
data['userid'] = this.userid;
data['authname'] = this.authname;
data['configid'] = this.configid;
data['contactno'] = this.contactno;
data['firstname'] = this.firstname;
data['lastname'] = this.lastname;
data['email'] = this.email;
return data;
}
}