Commit 53365b41 authored by Almouhannad's avatar Almouhannad

(F) edit doctor user class

parent c1dd7b99
......@@ -7,6 +7,10 @@
opacity: 40%;
}
.custom-input {
background-color: var(--background-color);
}
.custom-label {
color: var(--heading-color);
font-weight: 700;
......
export class DoctorUser {
constructor(userName: string, fullName: string) {
constructor(id:number, userName: string, fullName: string) {
this.id = id;
this.userName = userName;
this.fullName = fullName;
}
public id!: number;
public userName!: string;
public fullName!: string;
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment