mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 07:43:35 +00:00
14 lines
294 B
TypeScript
14 lines
294 B
TypeScript
import { UriMatchType } from '../../enums/uriMatchType';
|
|
|
|
import { LoginUriApi } from '../api/loginUriApi';
|
|
|
|
export class LoginUriData {
|
|
uri: string;
|
|
match: UriMatchType = null;
|
|
|
|
constructor(data: LoginUriApi) {
|
|
this.uri = data.uri;
|
|
this.match = data.match;
|
|
}
|
|
}
|