Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
H
HIAST-Clinics
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
almohanad.hafez
HIAST-Clinics
Commits
53365b41
Commit
53365b41
authored
Aug 23, 2024
by
Almouhannad
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(F) edit doctor user class
parent
c1dd7b99
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
login-form.component.css
...entication/components/login-form/login-form.component.css
+4
-0
doctor-user.ts
...p/usecases/admin/list-doctor-users/classes/doctor-user.ts
+3
-1
No files found.
Clinics.Frontend/src/app/authentication/components/login-form/login-form.component.css
View file @
53365b41
...
...
@@ -7,6 +7,10 @@
opacity
:
40%
;
}
.custom-input
{
background-color
:
var
(
--background-color
);
}
.custom-label
{
color
:
var
(
--heading-color
);
font-weight
:
700
;
...
...
Clinics.Frontend/src/app/usecases/admin/list-doctor-users/classes/doctor-user.ts
View file @
53365b41
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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment