The startup user DTO.

StartupUserDto

interface StartupUserDto {
    Name?: null | string;
    Password?: null | string;
}

Properties

Properties

Name?: null | string

Gets or sets the username.

StartupUserDto

Password?: null | string

Gets or sets the user's password.

StartupUserDto