mirror of
https://github.com/bitwarden/browser
synced 2025-12-24 12:13:39 +00:00
17 lines
353 B
TypeScript
17 lines
353 B
TypeScript
import { UriMatchType } from '../../enums/uriMatchType';
|
|
|
|
import { LoginUriApi } from '../api/loginUriApi';
|
|
|
|
export class LoginUriData {
|
|
uri: string;
|
|
match: UriMatchType = null;
|
|
|
|
constructor(data?: LoginUriApi) {
|
|
if (data == null) {
|
|
return;
|
|
}
|
|
this.uri = data.uri;
|
|
this.match = data.match;
|
|
}
|
|
}
|