harbor/src/ui/static/app/account/sign-in/sign-in-credential.ts
2017-02-21 14:54:42 +08:00

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;
}