You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
doctor_app_flutter/lib/models/user_model.dart

21 lines
352 B
Dart

class UserModel {
String UserID;
String Password;
int ProjectID;
int LanguageID;
String IPAdress;
double VersionID;
int Channel;
String SessionID;
UserModel(
{this.UserID,
this.Password,
this.ProjectID,
this.LanguageID,
this.IPAdress,
this.VersionID,
this.Channel,
this.SessionID});
}