Class DevCredentialSpec
Specification for a development credential.
public record DevCredentialSpec : IEquatable<DevCredentialSpec>
- Inheritance
-
DevCredentialSpec
- Implements
- Inherited Members
Constructors
DevCredentialSpec(string, string, UserRole)
Specification for a development credential.
public DevCredentialSpec(string Username, string Password, UserRole Role)
Parameters
UsernamestringThe username for login.
PasswordstringThe plaintext password (for development only).
RoleUserRoleThe user role (Patient, Physician, or Administrator).
Properties
Password
The plaintext password (for development only).
public string Password { get; init; }
Property Value
Role
The user role (Patient, Physician, or Administrator).
public UserRole Role { get; init; }
Property Value
Username
The username for login.
public string Username { get; init; }