mirror of
https://github.com/goharbor/harbor
synced 2025-04-07 23:15:54 +00:00
15 lines
282 B
TypeScript
15 lines
282 B
TypeScript
|
|
/**
|
|
* Declare class for store the sign in data,
|
|
* two prperties:
|
|
* principal: The username used to sign in
|
|
* password: The password used to sign in
|
|
*
|
|
* @export
|
|
* @class SignInCredential
|
|
*/
|
|
|
|
export class SignInCredential {
|
|
principal: string;
|
|
password: string;
|
|
} |